-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/spike_encoder' of https://github.com/GazzolaLab…
…/MiV-Simulator into feature/spike_encoder
- Loading branch information
Showing
17 changed files
with
1,148 additions
and
2,325 deletions.
There are no files selected for viewing
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
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
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
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,14 +1,14 @@ | ||
__doc__ = """Contains the end-user public API of the MiV-Simulator""" | ||
|
||
from miv_simulator.utils.io import create_neural_h5 | ||
from miv_simulator.simulator.distribute_synapses import distribute_synapses | ||
from miv_simulator.simulator.generate_connections import generate_connections | ||
from miv_simulator.simulator.generate_network_architecture import ( | ||
generate_network_architecture, | ||
) | ||
from miv_simulator.simulator.measure_distances import measure_distances | ||
from miv_simulator.simulator.generate_synapse_forest import ( | ||
generate_synapse_forest, | ||
) | ||
from miv_simulator.simulator.distribute_synapses import distribute_synapses | ||
from miv_simulator.simulator.generate_connections import generate_connections | ||
from miv_simulator.simulator import nh5 | ||
from miv_simulator.simulator.measure_distances import measure_distances | ||
from miv_simulator.simulator.execution_environment import ExecutionEnvironment | ||
from miv_simulator.utils.io import create_neural_h5 | ||
from miv_simulator.utils.neuron import configure_hoc |
Oops, something went wrong.