Open-Loop Deep-Brain Stimulation for Controlling Synchronization of Spiking Neurons.
python3.10 -m venv venv # create virtual env
source venv/bin/activate
pip install -r requirements.txt # install dependencies
gcc -shared -o libkuramoto.so -fPIC src/kop.c -lm # (opetional)
python src/main.pynote: computing the Kuramoto Synchrony Parameter is computationally intensive. Using the optional command above to compile the C implementation of kuramoto_syn permits the program to use a faster implementation.
- ftsts-code - source code to generate weight profiles for the original open-loop regime.
- ftsts-paper - original work on open-loop stimulation regime.
