Skip to content

Commit

Permalink
multimodel: adapt wc default params
Browse files Browse the repository at this point in the history
  • Loading branch information
caglorithm committed Feb 5, 2021
1 parent 0fda479 commit ea2f6bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neurolib/models/multimodel/builder/wilson_cowan.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from ..builder.base.network import Network, SingleCouplingExcitatoryInhibitoryNode
from ..builder.base.neural_mass import NeuralMass

WC_EXC_DEFAULT_PARAMS = {"a": 1.5, "mu": 3.0, "tau": 2.5, "ext_input": 1.0}
WC_EXC_DEFAULT_PARAMS = {"a": 1.5, "mu": 3.0, "tau": 2.5, "ext_input": 0.0}
WC_INH_DEFAULT_PARAMS = {"a": 1.5, "mu": 3.0, "tau": 3.75, "ext_input": 0.0}
# matrix as [to, from], masses as (EXC, INH)
WC_NODE_DEFAULT_CONNECTIVITY = np.array([[16.0, 12.0], [15.0, 3.0]])
Expand Down

0 comments on commit ea2f6bb

Please sign in to comment.