Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
9b8f588
1
Parent(s):
9aef011
Increase default population parameter
Browse files
eureqa.py
CHANGED
@@ -6,23 +6,23 @@ import numpy as np
|
|
6 |
import pandas as pd
|
7 |
|
8 |
# Dumped from hyperparam optimization
|
9 |
-
default_alpha =
|
10 |
-
default_annealing =
|
11 |
-
default_fractionReplaced =
|
12 |
-
default_fractionReplacedHof =
|
13 |
-
default_ncyclesperiteration =
|
14 |
-
default_niterations =
|
15 |
-
default_npop =
|
16 |
-
default_parsimony =
|
17 |
-
default_topn =
|
18 |
-
default_weightAddNode =
|
19 |
-
default_weightDeleteNode =
|
20 |
-
default_weightDoNothing =
|
21 |
-
default_weightMutateConstant =
|
22 |
-
default_weightMutateOperator =
|
23 |
-
default_weightRandomize =
|
24 |
-
default_weightSimplify =
|
25 |
-
default_result =
|
26 |
|
27 |
def eureqa(X=None, y=None, threads=4,
|
28 |
niterations=20,
|
|
|
6 |
import pandas as pd
|
7 |
|
8 |
# Dumped from hyperparam optimization
|
9 |
+
default_alpha = 5.429178
|
10 |
+
default_annealing = 1.000000
|
11 |
+
default_fractionReplaced = 0.415076
|
12 |
+
default_fractionReplacedHof = 0.031713
|
13 |
+
default_ncyclesperiteration = 1614.000000
|
14 |
+
default_niterations = 25.000000
|
15 |
+
default_npop = 300.000000
|
16 |
+
default_parsimony = 0.001861
|
17 |
+
default_topn = 9.000000
|
18 |
+
default_weightAddNode = 3.788920
|
19 |
+
default_weightDeleteNode = 2.553399
|
20 |
+
default_weightDoNothing = 0.498528
|
21 |
+
default_weightMutateConstant = 2.081372
|
22 |
+
default_weightMutateOperator = 2.003413
|
23 |
+
default_weightRandomize = 4.679883
|
24 |
+
default_weightSimplify = 0.009620
|
25 |
+
default_result = -1.183938
|
26 |
|
27 |
def eureqa(X=None, y=None, threads=4,
|
28 |
niterations=20,
|