https://github.com/fabriziomusacchio/izhikevich_model
Python scripts supporting tutorials on Izhikevich neuron model.
https://github.com/fabriziomusacchio/izhikevich_model
comp-neuro computational-neuroscience izhikevich-model izhikevich-neurons python python-tutorial
Last synced: 3 months ago
JSON representation
Python scripts supporting tutorials on Izhikevich neuron model.
- Host: GitHub
- URL: https://github.com/fabriziomusacchio/izhikevich_model
- Owner: FabrizioMusacchio
- Created: 2024-04-29T05:40:57.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-19T09:46:30.000Z (about 1 year ago)
- Last Synced: 2025-01-12T17:25:01.124Z (5 months ago)
- Topics: comp-neuro, computational-neuroscience, izhikevich-model, izhikevich-neurons, python, python-tutorial
- Language: Python
- Homepage: https://www.fabriziomusacchio.com/blog/2024-04-29-izhikevich_model/
- Size: 62.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Izhikevich model
Python scripts supporting tutorials on Izhikevich neuron model. For more details, see these blog posts:
* [Izhikevich model](https://www.fabriziomusacchio.com/blog/2024-04-29-izhikevich_model/)
* [Simulating spiking neural networks with Izhikevich neurons](https://www.fabriziomusacchio.com/blog/2024-05-19-izhikevich_network_model/)For reproducibility:
```bash
conda create -n izhikevich -y python=3.11
conda activate izhikevich
conda install -y mamba
mamba install -y ipykernel numpy matplotlib scipy
```