https://github.com/akshaybabloo/libspikes
A Spiking Neural Network framework with SNNML parser written in C++
https://github.com/akshaybabloo/libspikes
framework snn spiking-neural-networks
Last synced: 12 months ago
JSON representation
A Spiking Neural Network framework with SNNML parser written in C++
- Host: GitHub
- URL: https://github.com/akshaybabloo/libspikes
- Owner: akshaybabloo
- License: mit
- Created: 2017-06-28T06:14:09.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-28T06:14:48.000Z (over 8 years ago)
- Last Synced: 2025-04-13T21:17:26.469Z (12 months ago)
- Topics: framework, snn, spiking-neural-networks
- Language: C++
- Size: 1.34 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# libSpikes
A Spiking Neural Network framework.
This library was written using cygwin/minGW. It also supports MSVC but external libraries are required.
## Instillation
> I would highly recommend using `Jetbrains CLion` IDE.
**External libraries required:**
1. Boost 1.64+ - http://www.boost.org/
2. Eigen 3.3+ - http://eigen.tuxfamily.org
3. `dirent.h` for MSVC - https://github.com/tronkko/dirent
**Setting up the libraries:**
1. Clone the repository
```
git clone https://github.com/akshaybabloo/libSpikes.git
```
2. open `libSpikes` and create two folders - `libs` and `winLibs` (only if you are using MSVC)
3. Copy Boost and Eigen folders to `libs` and `dirent.h` to `winLibs`
CLion should be able to index the libraries.
## Example
Coming soon.