BrainPy
BrainPy copied to clipboard
Brain Dynamics Programming in Python
Please: - [x] Check for duplicate requests. - [x] Describe your goal, and if possible provide a code snippet with a motivating example. Currently, the ``brainpy.dyn.DSRunner`` and ``brainpy.integrators.IntegratorRunner`` have good...
Please: - [x] Check for duplicate requests. - [x] Describe your goal, and if possible provide a code snippet with a motivating example. If instances of ``brainpy.math.Variable`` in a class...
Attached is the simulation of two HH models and an Alpha synapse model. The initial membrane potential (V) of the HH model is about -65 mV, but in the image...
Please: - [x] Check for duplicate requests. - [x] Describe your goal, and if possible provide a code snippet with a motivating example. Rate-based whole brain modeling is attractive for...
```python import brainpy as bp bp.math.enable_x64() def ppa2d(group, title, v_range=None, w_range=None, Iext=65., duration=400): v_range = [-70., -40.] if not v_range else v_range w_range = [-10., 50.] if not w_range else...
- rename `clean_caches` to `clear_taichi_aot_caches` - rename `check_kernels_count` to `count_taichi_aot_kernels` - support to clean taichi caches in `brainpy.math.clear_taichi_aot_caches`
Support more than 8 parameters of taichi gpu custom operator definition. (Need brainpylib > 0.2.8) The `taichi.kernel` which register in BrainPy on cuda backend now support more than 8 parameters....
Hi, Chaoming: I am trying to do simulation and training of a dynamic system (a self customized RNN based on brainpy, https://github.com/Dr-Chen-Xiaoyu/DecoModel) with very huge dimension and time steps. The...
In #626 we mentioned that the rotation method in delay variables does not implement an autograd functionality. However I have tested this in training and found that the parameters can...