Skip to content

Commit

Permalink
Update README (#558)
Browse files Browse the repository at this point in the history
* update doc

* add 第二届神经计算建模与编程培训班
  • Loading branch information
chaoming0625 committed Dec 12, 2023
1 parent b1e80e8 commit 40f6c58
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ We provide a Binder environment for BrainPy. You can use the following button to
- **[brainpy-datasets](https://github.com/brainpy/datasets)**: Neuromorphic and Cognitive Datasets for Brain Dynamics Modeling.
- [《神经计算建模实战》 (Neural Modeling in Action)](https://github.com/c-xy17/NeuralModeling)
- [第一届神经计算建模与编程培训班 (First Training Course on Neural Modeling and Programming)](https://github.com/brainpy/1st-neural-modeling-and-programming-course)
- [第二届神经计算建模与编程培训班 (Second Training Course on Neural Modeling and Programming)](https://github.com/brainpy/2st-neural-modeling-and-programming-course)


## Citing
Expand Down
2 changes: 1 addition & 1 deletion brainpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

__version__ = "2.4.6.post2"
__version__ = "2.4.6.post4"

# fundamental supporting modules
from brainpy import errors, check, tools
Expand Down
4 changes: 2 additions & 2 deletions brainpy/_src/running/pathos_multiprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def cpu_ordered_parallel(
>>>
>>> def simulate(inp):
>>> inp = bm.as_jax(inp)
>>> hh = bp.neurons.HH(1)
>>> hh = bp.dyn.HH(1)
>>> runner = bp.DSRunner(hh, inputs=['input', inp],
>>> monitors=['V', 'spike'],
>>> progress_bar=False)
Expand Down Expand Up @@ -194,7 +194,7 @@ def cpu_unordered_parallel(
>>>
>>> def simulate(inp):
>>> inp = bm.as_jax(inp)
>>> hh = bp.neurons.HH(1)
>>> hh = bp.dyn.HH(1)
>>> runner = bp.DSRunner(hh, inputs=['input', inp],
>>> monitors=['V', 'spike'],
>>> progress_bar=False)
Expand Down

0 comments on commit 40f6c58

Please sign in to comment.