Skip to content

Commit 26293af

Browse files
authored
Merge branch 'main' into major_release_update
2 parents 2956763 + bbea397 commit 26293af

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

docs/tutorials/model_basics/evolving_synapses.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ with Context("Circuit") as circuit:
5858
circuit.wrap_and_add_command(jit(advance_process.pure), name="advance")
5959

6060
reset_process = (JaxProcess()
61-
>> a.reset)
61+
>> a.reset)
6262
circuit.wrap_and_add_command(jit(reset_process.pure), name="reset")
6363

6464
## set up non-compiled utility commands

docs/tutorials/model_basics/model_building.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ While building our dynamical system we will set up a Context and then add the th
1111
from jax import numpy as jnp, random
1212
from ngclearn import Context
1313
from ngclearn.utils import JaxProcess
14+
from ngcsimlib.compilers.process import Process
1415
from ngclearn.components import RateCell, HebbianSynapse
1516
import ngclearn.utils.weight_distribution as dist
1617

tests/components/input_encoders/test_bernoulliCell.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88

99
from ngcsimlib.compilers.process import Process, transition
1010
from ngclearn.utils import JaxProcess
11-
#from ngcsimlib.component import Component
12-
#from ngcsimlib.compartment import Compartment
1311
from ngcsimlib.context import Context
1412
#from ngcsimlib.utils.compartment import Get_Compartment_Batch
1513

0 commit comments

Comments
 (0)