Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2929_PrioritizedGrammarEnumeration/HeuristicLab.Algorithms.DataAnalysis.PGE/3.3/go-code/src/go-pge/config/prob/prob_template.txt @ 16666

Last change on this file since 16666 was 16666, checked in by hmaislin, 5 years ago

#2929: Modified make / folder structure to build original app, added x86 dll

File size: 645 bytes
Line 
1# Problem Configuration
2Name = {{.Name}}
3ProblemType = Benchmark
4TrainData = benchmark/{{.Name}}.trn
5TestData = benchmark/{{.Name}}.tst
6HitRatio = 0.01
7MaxIter = 1000
8
9# Search Configuration
10UsableVars = {{range $I, $E := .TrainVars }} {{$I}}{{end}} # list of indices into independent variables
11SearchVar = 0 # index into dependent variables
12
13# Tree Bounds
14MaxSize = 50
15MinSize = 4   # GPSR does not work when MinSize < 4
16MaxDepth = 6
17MinDepth = 1
18
19# Tree Components
20UsableVars = {{range $I, $E := .TrainVars }} {{$I}}{{end}}
21Roots = Add
22Nodes = {{range .Functions}} {{.}}{{end}}
23NonTrig = {{range .NonTrig}} {{.}}{{end}}
24Leafs = Var ConstantF
Note: See TracBrowser for help on using the repository browser.