https://github.com/akshaybabloo/spikesparser
Data parser for Spikes SNN library
https://github.com/akshaybabloo/spikesparser
datascience parser spiking-neural-networks
Last synced: about 1 year ago
JSON representation
Data parser for Spikes SNN library
- Host: GitHub
- URL: https://github.com/akshaybabloo/spikesparser
- Owner: akshaybabloo
- License: mit
- Created: 2017-10-15T22:28:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-03T03:16:11.000Z (over 8 years ago)
- Last Synced: 2025-04-13T21:17:26.536Z (about 1 year ago)
- Topics: datascience, parser, spiking-neural-networks
- Language: Python
- Size: 58.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SpikesParser
| Branch | Codecov | CI | Requirements |
|--------|---------|---------------------------------------------------------------------------------------------------------------------------------------|--------------|
| Master | [](https://codecov.io/gh/akshaybabloo/SpikesParser) | [](https://travis-ci.org/akshaybabloo/SpikesParser) | [](https://requires.io/github/akshaybabloo/SpikesParser/requirements/?branch=master) |
Data parser for Spikes SNN library but can also be used as an external library.
SpikesParser supports `csv`, `json` (coming soon) and `sml` (coming soon) reading and writing.
## Quick Start
Some basic examples on reading and writing of files.
### Reading a time series data with labels
```python
from spiksparser import reader
csv_reader = reader.ReadCSV('path/to/folder/')
```