forked from AllenInstitute/sonata
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:AllenInstitute/sonata
* 'master' of github.com:AllenInstitute/sonata: updating setup metadata for pypi Fixing so that all examples use model_name instead of pop_name Updating pysonata code Specify how to represent node types when `target_simulator` is "NEST" or "PyNN" (AllenInstitute#33)
- Loading branch information
Showing
27 changed files
with
372 additions
and
138 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,4 +1,4 @@ | ||
node_type_id model_type ei location pop_name | ||
node_type_id model_type ei location model_name | ||
100 virtual e LGN tON | ||
101 virtual e LGN tOFF | ||
102 virtual e LGN tONOFF |
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,3 +1,3 @@ | ||
edge_type_id target_query source_query delay weight_function syn_weight dynamics_params | ||
100 pop_name=='LIF_exc' * 2.0 wmax 0.0045 instanteneousExc.json | ||
101 pop_name=='LIF_inh' * 2.0 wmax 0.0015 instanteneousExc.json | ||
100 model_name=='LIF_exc' * 2.0 wmax 0.0045 instanteneousExc.json | ||
101 model_name=='LIF_inh' * 2.0 wmax 0.0015 instanteneousExc.json |
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,2 +1,2 @@ | ||
node_type_id model_type ei location pop_name | ||
node_type_id model_type ei location model_name | ||
100 virtual e TW TW |
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,3 +1,3 @@ | ||
edge_type_id target_query source_query delay weight_function syn_weight dynamics_params | ||
100 pop_name=='LIF_exc' * 2.0 wmax 0.01 instanteneousExc.json | ||
101 pop_name=='LIF_inh' * 2.0 wmax 0.02 instanteneousExc.json | ||
100 model_name=='LIF_exc' * 2.0 wmax 0.01 instanteneousExc.json | ||
101 model_name=='LIF_inh' * 2.0 wmax 0.02 instanteneousExc.json |
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,3 +1,3 @@ | ||
node_type_id ei pop_name location model_template model_type dynamics_params | ||
node_type_id ei model_name location model_template model_type dynamics_params | ||
100 e LIF_exc VisL4 nrn:IntFire1 point_process IntFire1_exc_1.json | ||
101 i LIF_inh VisL4 nrn:IntFire1 point_process IntFire1_inh_1.json |
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,5 +1,5 @@ | ||
edge_type_id target_query source_query delay weight_function syn_weight dynamics_params | ||
100 model_type=='point_process'&ei=='i' ei=='i' 2.0 wmax 0.01 instanteneousInh.json | ||
101 model_type=='point_process'&ei=='e' ei=='i' 2.0 wmax 0.15 instanteneousInh.json | ||
102 pop_name=='LIF_inh' ei=='e' 2.0 wmax 0.3 instanteneousExc.json | ||
103 pop_name=='LIF_exc' ei=='e' 2.0 wmax 0.002 instanteneousExc.json | ||
102 model_name=='LIF_inh' ei=='e' 2.0 wmax 0.3 instanteneousExc.json | ||
103 model_name=='LIF_exc' ei=='e' 2.0 wmax 0.002 instanteneousExc.json |
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,3 +1,3 @@ | ||
from bmtk.analyzer.visualization.spikes import plot_spikes | ||
|
||
plot_spikes('network/v1_nodes.h5', 'network/v1_node_types.csv', 'output/spikes.h5', group_key='pop_name') | ||
plot_spikes('network/v1_nodes.h5', 'network/v1_node_types.csv', 'output/spikes.h5', group_key='model_name') |
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
Oops, something went wrong.