Spaces:
Running
Running
Commit
·
91e26f9
1
Parent(s):
5e0dd71
Fix JAX test
Browse files- test/test_jax.py +2 -2
test/test_jax.py
CHANGED
|
@@ -39,10 +39,10 @@ class TestJAX(unittest.TestCase):
|
|
| 39 |
equation_file="equation_file.csv",
|
| 40 |
output_jax_format=True,
|
| 41 |
variable_names="x1 x2 x3".split(" "),
|
| 42 |
-
selection=[1, 2, 3],
|
| 43 |
)
|
| 44 |
|
| 45 |
-
model.
|
|
|
|
| 46 |
model.using_pandas = False
|
| 47 |
model.refresh()
|
| 48 |
jformat = model.jax()
|
|
|
|
| 39 |
equation_file="equation_file.csv",
|
| 40 |
output_jax_format=True,
|
| 41 |
variable_names="x1 x2 x3".split(" "),
|
|
|
|
| 42 |
)
|
| 43 |
|
| 44 |
+
model.selection = [1, 2, 3]
|
| 45 |
+
model.n_features = 3
|
| 46 |
model.using_pandas = False
|
| 47 |
model.refresh()
|
| 48 |
jformat = model.jax()
|