Skip to content

Commit

Permalink
built binaries, update readme and set pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
Saran-nns committed Jan 10, 2021
1 parent c431819 commit 3786cd7
Show file tree
Hide file tree
Showing 13 changed files with 2,451 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build/lib/sorn/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from .sorn import Simulator, Trainer
import logging
from .utils import *

__author__ = "Saranraj Nambusubramaniyan"
__version__ = "0.3.20"

logging.basicConfig(level=logging.INFO)
38 changes: 38 additions & 0 deletions build/lib/sorn/configuration.ini
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

Loading

0 comments on commit 3786cd7

Please sign in to comment.