-
Notifications
You must be signed in to change notification settings - Fork 2
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
Saran-nns
committed
Nov 17, 2020
1 parent
5b2b334
commit c07cd69
Showing
13 changed files
with
52 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
include README.md | ||
include LICENSE | ||
include requirements.txt | ||
include sorn/*.ini | ||
include sorn/*.ini |
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
from sorn.sorn import Simulator, Trainer | ||
from .sorn import Simulator, Trainer | ||
import logging | ||
from sorn.utils import * | ||
from .utils import * | ||
|
||
__author__ = "Saranraj Nambusubramaniyan" | ||
__version__ = "0.3.6" | ||
__version__ = "0.3.19" | ||
|
||
logging.basicConfig(level=logging.INFO) |
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,38 @@ | ||
[Network_Config] | ||
|
||
# Number of neurons in the reservoir | ||
Ne = 200 | ||
|
||
# Number of input units in the reservoir | ||
Nu = 10 | ||
|
||
# Connection/Network type: Sparse or Dense | ||
|
||
network_type_ee = Sparse | ||
network_type_ei = Sparse | ||
network_type_ie = Dense | ||
|
||
# Mean number of incoming and outgoing connections per neuron | ||
lambda_ee = 20 | ||
lambda_ei = 40 | ||
lambda_ie = 100 | ||
|
||
# Hebbian Learning rate | ||
eta_stdp = 0.004 | ||
|
||
# Anti-Hebbian learning rate | ||
eta_inhib = 0.001 | ||
|
||
# Intrinsic plasticity constants | ||
eta_ip = 0.01 | ||
|
||
# Threshold initialization values | ||
te_max = 1.0 | ||
ti_max = 0.5 | ||
ti_min = 0.0 | ||
te_min = 0.0 | ||
|
||
# Mean and standard deviation of target firing rate , h_ip | ||
mu_ip = 0.1 | ||
sigma_ip = 0.0 | ||
|
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
from sorn.sorn import Simulator, Trainer | ||
from .sorn import Simulator, Trainer | ||
import logging | ||
from sorn.utils import * | ||
from .utils import * | ||
|
||
__author__ = "Saranraj Nambusubramaniyan" | ||
__version__ = "0.3.6" | ||
__version__ = "0.3.19" | ||
|
||
logging.basicConfig(level=logging.INFO) |
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