-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jinqi Huang
committed
Feb 21, 2022
1 parent
ff6f5c2
commit 5aa7cc4
Showing
2 changed files
with
34 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
NeuroPack core library | ||
|
||
------------------------------------------------------------------------------ | ||
All necessary configuration parameters in NeuroBase.json file: | ||
|
||
* `NETSIZE`: The total number of neurons | ||
* `DEPTH`: Depth of the network | ||
* `SPIKETRAIN`: if spike train is enabled as inputs. | ||
* `Pattern_epoch`: the number of spikes regarded as one input if spike train is enabled. Currently used in tempotron core. | ||
* `temporalCoding_enable`: if temporal coding is enabled. | ||
* `LAYER`: the number of layers | ||
* `dt`: time step used in Izhkevich neuron core. | ||
* `INITRES`: memristors initialised resistance states | ||
* `DEVICEINITVAIATION`: memristor initialisation variation | ||
* `POSVOLTOFPULSELIST`: magnitudes of pulse options for positive pulses | ||
* `POSPULSEWIDTHOFPULSELIST`: pulsewidth of pulse options for positive pulses | ||
* `NEGVOLTOFPULSELIST`: magnitudes of pulse options for negative pulses | ||
* `NEGPULSEWIDTHOFPULSELIST`: pulsewidth of pulse options for negative pulses | ||
* `MAXUPDATESTEPS`: maximum update step number for weight updating | ||
* `RTOLERANCE`: R tolerance. Defined as (R_real - R_exp)/R_exp | ||
|
||
------------------------------------------------------------------------------ | ||
connectivity matrix format: | ||
# PREID, POSTID, W, B, TYPE | ||
# TYPE can be either +1 (excitatory) or -1 (inhibitory) | ||
|
||
------------------------------------------------------------------------------ | ||
stimuli file format: | ||
# timestep - neuron ID that fires, neuron ID that fires, neuron ID that fires, ...., neuron ID that fires |