File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed
docs/tutorials/model_basics
tests/components/input_encoders Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ While building our dynamical system we will set up a Context and then add the th
1111from jax import numpy as jnp, random
1212from ngclearn import Context
1313from ngclearn.utils import JaxProcess
14+ from ngcsimlib.compilers.process import Process
1415from ngclearn.components import RateCell, HebbianSynapse
1516import ngclearn.utils.weight_distribution as dist
1617
Original file line number Diff line number Diff line change 88
99from ngcsimlib .compilers .process import Process , transition
1010from ngclearn .utils import JaxProcess
11- #from ngcsimlib.component import Component
12- #from ngcsimlib.compartment import Compartment
1311from ngcsimlib .context import Context
1412#from ngcsimlib.utils.compartment import Get_Compartment_Batch
1513
You can’t perform that action at this time.
0 commit comments