We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edc1803 commit b96139fCopy full SHA for b96139f
tests/components/input_encoders/test_bernoulliCell.py
@@ -40,11 +40,11 @@ def clamp(x):
40
x_t = jnp.array([[x_seq[0,ts]]]) ## get data at time t
41
clamp(x_t)
42
advance_process.run(t=ts*1., dt=dt)
43
- outs.append(a.outputs.value)
+ outs.append(a.outputs.get())
44
outs = jnp.concatenate(outs, axis=1)
45
46
## output should equal input
47
assert_array_equal(outs, x_seq)
48
#print(outs)
49
50
-#test_bernoulliCell1()
+test_bernoulliCell1()
tests/components/input_encoders/test_poissonCell.py
@@ -43,4 +43,4 @@ def clamp(x):
-#test_poissonCell1()
+test_poissonCell1()
0 commit comments