BrainPy icon indicating copy to clipboard operation
BrainPy copied to clipboard

Brain Dynamics Programming in Python

Results 56 BrainPy issues
Sort by recently updated
recently updated
newest added

In my single compartment HH-like model, the nullcline of the voltage variable has two branches. When I use brainpy.analysis.PhasePlane2D.plot_nullcline() to plot the nullcline, the endpoints of the two branches are...

I followed the official [tutorial](https://brainpy.tech/docs/quickstart/training.html) to use the **bptt trainer** and found jax leak problems. ``` with jax.checking_leaks(): trainer.fit(train_data, num_epoch=30) ``` it casued ``` UnexpectedTracerError Traceback (most recent call last)...

bug

Hi, BrainPy team While modelling synapse connections with delay, I discovered the delay in FullProjAlignPost* is always off by some steps compared to the value passed as argument. I tested...

bug

Hi brainpy! I am hoping to incorporate non-uniform transmission delays into a LIF network (i.e. each synapse has a different delay), but I can't find a straightfoward way to implement...

bug

Please: - [x] Check for duplicate requests. - [x] Describe your goal, and if possible provide a code snippet with a motivating example. Hi, I would like to model a...

enhancement

Hello brainpy team: I found a leak problem in your sample code: ```python with jax.checking_leaks(): model = bp.dyn.HH(3, gNa=bp.init.Uniform(min_val=100, max_val=140)) inputs = np.ones(int(100./ bm.dt)) * 6. # 100 ms runner...

bug