A deep learning toolbox for spike-to-image models.
Project description
Spike-Zoo: A Toolbox for Spike-to-Image Reconstruction
📖 About
⚡ Spike-Zoo is the go-to library for state-of-the-art pretrained spike-to-image models designed to reconstruct images from spike streams. Whether you're looking for a simple inference solution or aiming to train your own spike-to-image models, ⚡Spike-Zoo is a modular toolbox that supports both, with key features including:
- Fast inference with pre-trained models.
- Training support for custom-designed spike-to-image models.
- Specialized functions for processing spike data.
🚩 Updates/Changelog
-
25-02-02: Release the
Spike-Zoo v0.2code, which supports more methods, provide more usages. -
24-08-26: Update the
SpikeFormerandRSIRmethods, theUHSRdataset and thepiqenon-reference metric. -
24-07-19: Release the
Spike-Zoo v0.1base code.
🍾 Quick Start
1. Installation
For users focused on utilizing pretrained models for spike-to-image conversion, we recommend installing SpikeZoo using one of the following methods:
- Install the last stable version from PyPI:
pip install spikezoo
- Install the latest developing version from the source code:
git clone https://github.com/chenkang455/Spike-Zoo
cd Spike-Zoo
python setup.py install
For users interested in training their own spike-to-image model based on our framework, we recommend cloning the repository and modifying the related code directly.
2. Inference
Reconstructing images from the spike input is super easy with Spike-Zoo. Try the following code of the single model:
from spikezoo.pipeline import Pipeline, PipelineConfig
pipeline = Pipeline(
cfg = PipelineConfig(save_folder="results"),
model_cfg="spk2imgnet",
dataset_cfg="base"
)
You can also run multiple models at once by changing the pipeline:
from spikezoo.pipeline import EnsemblePipeline, EnsemblePipelineConfig
pipeline = EnsemblePipeline(
cfg = EnsemblePipelineConfig(save_folder="results"),
model_cfg_list=['tfp','tfi', 'spk2imgnet', 'wgse', 'ssml', 'bsf', 'stir', 'spikeclip','spikeformer'],
dataset_cfg="base"
)
- Having established the pipeline, run the following code to obtain the metric and save the reconstructed image from the given spike:
# 1. spike-to-image from the given dataset
pipeline.spk2img_from_dataset(idx = 0)
# 2. spike-to-image from the given .dat file
pipeline.spk2img_from_file(file_path = 'data/scissor.dat',width = 400,height=250)
# 3. spike-to-image from the given spike
import spikezoo as sz
spike = sz.load_vidar_dat("data/scissor.dat",width = 400,height = 250,version='cpp')
pipeline.spk2img_from_spk(spike)
For detailed usage, welcome check test_single.ipynb and test_multi.ipynb 😊😊😊.
- Save all images of the given dataset.
pipeline.save_imgs_from_dataset()
- Calculate the metrics for the specified dataset.
pipeline.cal_metrics()
- Calculate the parameters (params,flops,latency) based on the established pipeline.
pipeline.cal_params()
3. Training
We provide a user-friendly code for training our provided base model (modified from the SpikeCLIP) for the classic REDS dataset introduced in Spk2ImgNet:
from spikezoo.pipeline import TrainPipelineConfig, TrainPipeline
from spikezoo.datasets.reds_small_dataset import REDS_Small_Config
pipeline = TrainPipeline(
cfg=TrainPipelineConfig(save_folder="results", epochs = 10),
dataset_cfg=REDS_Small_Config(root_dir = "path/REDS_Small"),
model_cfg="base",
)
pipeline.train()
We finish the training with one 4090 GPU in 2 minutes, achieving 34.7dB in PSNR and 0.94 in SSIM.
🌟 We encourage users to develop their models using our framework, with the tutorial being released soon.
4. Others
We provide a faster load_vidar_dat function implemented with cpp (by @zeal-ye):
import spikezoo as sz
spike = sz.load_vidar_dat("data/scissor.dat",width = 400,height = 250,version='cpp')
🚀 Results on examples/test_load_dat.py show that the cpp version is more than 10 times faster than the python version.
📅 TODO
- Provide the tutorials.
- Support more training settings.
- Support more spike-based image reconstruction methods and datasets.
- Support the overall pipeline for spike simulation.
✨ Acknowledgment
Our code is built on the open-source projects of SpikeCV, IQA-Pytorch, BasicSR and NeRFStudio.We appreciate the effort of the contributors to these repositories. Thanks for @ruizhao26 and @Leozhangjiyuan for their help in building this project.
📑 Citation
If you find our codes helpful to your research, please consider to use the following citation:
@misc{spikezoo,
title={{Spike-Zoo}: Spike-Zoo: A Toolbox for Spike-to-Image Reconstruction},
author={Kang Chen and Zhiyuan Ye},
year={2025},
howpublished = "[Online]. Available: \url{https://github.com/chenkang455/Spike-Zoo}"
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file spikezoo-0.2.1.tar.gz.
File metadata
- Download URL: spikezoo-0.2.1.tar.gz
- Upload date:
- Size: 18.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15b11b4097d969855ae39b03e14872714da69515e468476ba321f0add7fc9408
|
|
| MD5 |
fea301ef1f38c49917d6c76ad7c5528c
|
|
| BLAKE2b-256 |
ef3a6eb64daa423536cd240dda8707ba12efb09b2b232ffff270329ff16579b2
|
File details
Details for the file spikezoo-0.2.1-py3-none-any.whl.
File metadata
- Download URL: spikezoo-0.2.1-py3-none-any.whl
- Upload date:
- Size: 19.0 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbe4b512b1b198653d4004703a8f1cdc6ae066cf6f16e1fe793090a96292242d
|
|
| MD5 |
544a01a36dadc256a8e0b99f987d0990
|
|
| BLAKE2b-256 |
fca81b15d0753e2625ecf9f21ee3d7344f847f04003c46f8815ee8c1681cd218
|