Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
561e614
1
Parent(s):
23b55a5
Reduce test size
Browse files- TODO.md +1 -0
- test/test.py +1 -4
TODO.md
CHANGED
@@ -64,6 +64,7 @@
|
|
64 |
- [ ] Sort these todo lists by priority
|
65 |
|
66 |
- [ ] Automatically convert log, log10, log2, pow to the correct operators.
|
|
|
67 |
|
68 |
## Feature ideas
|
69 |
|
|
|
64 |
- [ ] Sort these todo lists by priority
|
65 |
|
66 |
- [ ] Automatically convert log, log10, log2, pow to the correct operators.
|
67 |
+
- [ ] I think the simplification isn't working correctly (post-merging SymbolicUtils.)
|
68 |
|
69 |
## Feature ideas
|
70 |
|
test/test.py
CHANGED
@@ -135,10 +135,7 @@ class TestPipeline(unittest.TestCase):
|
|
135 |
y,
|
136 |
unary_operators=[],
|
137 |
binary_operators=["+", "*", "/", "-"],
|
138 |
-
|
139 |
-
populations=10,
|
140 |
-
annealing=False,
|
141 |
-
useFrequency=False,
|
142 |
Xresampled=Xresampled,
|
143 |
denoise=True,
|
144 |
select_k_features=2,
|
|
|
135 |
y,
|
136 |
unary_operators=[],
|
137 |
binary_operators=["+", "*", "/", "-"],
|
138 |
+
**self.default_test_kwargs,
|
|
|
|
|
|
|
139 |
Xresampled=Xresampled,
|
140 |
denoise=True,
|
141 |
select_k_features=2,
|