mirror of
https://github.com/bics-rug/felice-models.git
synced 2026-03-10 05:06:02 +01:00
Improv doc
This commit is contained in:
@@ -30,4 +30,4 @@ For GPU acceleration with CUDA 13:
|
|||||||
uv sync --extra cuda
|
uv sync --extra cuda
|
||||||
```
|
```
|
||||||
|
|
||||||
See the [examples](scripts/examples/neuron_models/) directory for more detailed usage examples.
|
See the [examples](https://github.com/bics-rug/felice-models/tree/main/scripts/examples/neuron_models) directory for more detailed usage examples.
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
# Circuit implementing the fhn neuron.
|
|
||||||
|
|
||||||
- The circuits in the schematics implement the FHN neuron described.
|
|
||||||
- The FHN neuron is an implementation of the circuit described in (Ribar, L. (2019). Synthesis of neuromorphic circuits with neuromodulatory properties [Apollo - University of Cambridge Repository]. https://doi.org/10.17863/CAM.53750). The OTA and CMFB are well known designs that can be found in textbooks.
|
|
||||||
@@ -1,5 +1,10 @@
|
|||||||
# FitzHugh-Nagumo
|
# FitzHugh-Nagumo
|
||||||
|
|
||||||
|
# Circuit implementing the fhn neuron.
|
||||||
|
|
||||||
|
- The circuits in the schematics implement the FHN neuron described.
|
||||||
|
- The FHN neuron is an implementation of the circuit described in (Ribar, L. (2019). Synthesis of neuromorphic circuits with neuromodulatory properties [Apollo - University of Cambridge Repository]. [DOI: 10.17863/CAM.53750](https://doi.org/10.17863/CAM.53750)). The OTA and CMFB are well known designs that can be found in textbooks.
|
||||||
|
|
||||||
## Circuit equation
|
## Circuit equation
|
||||||
|
|
||||||
$$
|
$$
|
||||||
@@ -15,6 +20,7 @@ where the currents are:
|
|||||||
- $I_{fast} = a_{fast} \tanh(v - v_{off,fast})$
|
- $I_{fast} = a_{fast} \tanh(v - v_{off,fast})$
|
||||||
- $I_{slow} = a_{slow} \tanh(v_{slow} - v_{off,slow})$
|
- $I_{slow} = a_{slow} \tanh(v_{slow} - v_{off,slow})$
|
||||||
|
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
See the following interactive notebook for a practical example:
|
See the following interactive notebook for a practical example:
|
||||||
|
|||||||
@@ -2,6 +2,6 @@
|
|||||||
## Circuit Design
|
## Circuit Design
|
||||||
W/L = 4/3
|
W/L = 4/3
|
||||||
## Circuit Simulation
|
## Circuit Simulation
|
||||||
 Fig.1 The dynamics of leaky integrate and fire neuron. The grey signal is the input spikes, the yellow signal is the membrane potential and the dark blue is the output spikes from the neuron.
|
 Fig.1 The dynamics of leaky integrate and fire neuron. The grey signal is the input spikes, the yellow signal is the membrane potential and the dark blue is the output spikes from the neuron.
|
||||||
## Referennces
|
## Referennces
|
||||||
1. Sourikopoulos I, Hedayat S, Loyez C, Danneville F, Hoel V, Mercier E and Cappy A (2017) A 4-fJ/Spike Artificial Neuron in 65 nm CMOS Technology. Front. Neurosci. 11:123. doi: 10.3389/fnins.2017.00123
|
1. Sourikopoulos I, Hedayat S, Loyez C, Danneville F, Hoel V, Mercier E and Cappy A (2017) A 4-fJ/Spike Artificial Neuron in 65 nm CMOS Technology. Front. Neurosci. 11:123. doi: 10.3389/fnins.2017.00123
|
||||||
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
|
Before Width: | Height: | Size: 130 KiB After Width: | Height: | Size: 130 KiB |
@@ -7,7 +7,7 @@ Input current mirror W/l = 0.2 <br>
|
|||||||
All other transistors W/L = 4/3
|
All other transistors W/L = 4/3
|
||||||
## Circuit Simulation
|
## Circuit Simulation
|
||||||
|
|
||||||
 Fig.1 The dynamics of Exponential integrate and fire neuron. The light blue signal is the input spikes, the yellow signal is the membrane potential and the dark blue is the output spikes from the neuron.
|
 Fig.1 The dynamics of Exponential integrate and fire neuron. The light blue signal is the input spikes, the yellow signal is the membrane potential and the dark blue is the output spikes from the neuron.
|
||||||
## References
|
## References
|
||||||
1. Rubino, Arianna, Melika Payvand, and Giacomo Indiveri. "Ultra-low power silicon neuron circuit for extreme-edge neuromorphic intelligence." 2019 26th IEEE International Conference on Electronics, Circuits and Systems (ICECS). IEEE, 2019.
|
1. Rubino, Arianna, Melika Payvand, and Giacomo Indiveri. "Ultra-low power silicon neuron circuit for extreme-edge neuromorphic intelligence." 2019 26th IEEE International Conference on Electronics, Circuits and Systems (ICECS). IEEE, 2019.
|
||||||
2. Bartolozzi, Chiara, Srinjoy Mitra, and Giacomo Indiveri. "An ultra low power current-mode filter for neuromorphic systems and biomedical signal processing." 2006 IEEE Biomedical Circuits and Systems Conference. IEEE, 2006.
|
2. Bartolozzi, Chiara, Srinjoy Mitra, and Giacomo Indiveri. "An ultra low power current-mode filter for neuromorphic systems and biomedical signal processing." 2006 IEEE Biomedical Circuits and Systems Conference. IEEE, 2006.
|
||||||
|
|||||||
@@ -27,6 +27,8 @@ nav:
|
|||||||
- Example: neuron_models/fhn/fhn.ipynb
|
- Example: neuron_models/fhn/fhn.ipynb
|
||||||
- Snowball:
|
- Snowball:
|
||||||
- Description: neuron_models/snowball/index.md
|
- Description: neuron_models/snowball/index.md
|
||||||
|
- LIF:
|
||||||
|
- Description: neuron_models/lif/index.md
|
||||||
- API Reference:
|
- API Reference:
|
||||||
- api/index.md
|
- api/index.md
|
||||||
- Neuron Models: api/neuron_models.md
|
- Neuron Models: api/neuron_models.md
|
||||||
|
|||||||
Reference in New Issue
Block a user