This is a c++ based object oriented library for simulating spiking neural networks. It was used for simulations in the following publications:
Running build_all.sh
will compile:
csim
(source code is in src
)simulations/fm/som02/som02.cpp
which was used in Frank Michler et al. (2009)minimal/minimal.cpp
is a minimal simulation program demonstrating how to use the library.mycxxtests
using the cxxtest libraryBinaries will be installed in install
.
You can run the simulations via:
cd install/bin/som02
./som02
settings_som02.cfg contains default simulation parameters that can be overwritten via command line arguments.
After compiling, simulations can also be started and evaluated from jupyter notebooks.
env/activate_python_env.sh
to setup your python environment.
You can use env/activate_python_env_EXAMPLE.sh
as an example.start_jupyter.sh
starts jupyter notebook in subdirectory python
.python/ipynb/run_objsim_with_gaussian_input.ipynb
can be used to run som02.cpppython/ipynb/calc_maps.ipynb
demonstrates how to load simulation data and calculate topographic maps.