Views
No views yet
⚠️ Coverage: DvsGesture and SL-Animals-DVS only. The paper's third dataset, GEN1 (object detection), is not included here. Checkpoints are weights-only (state_dict, fp32, no optimizer state) — for evaluation/inference, not resuming training.
| File | Dataset | Representation | This checkpoint | Paper |
|---|---|---|---|---|
DG-T-SP.ckpt | DvsGesture | Spiking Patches | 97.73 | 98.1 |
DG-T-V.ckpt | DvsGesture | Voxel | 97.73 | 97.7 |
DG-T-F.ckpt | DvsGesture | Frames | 96.21 | 97.0 |
SL-T-SP.ckpt | SL-Animals-DVS | Spiking Patches | 89.47 | 91.7 |
SL-T-V.ckpt | SL-Animals-DVS | Voxel | 85.34 | 90.2 |
SL-T-F.ckpt | SL-Animals-DVS | Frames | 92.48 | 88.0 |
train.DEFAULT_CONFIGS (filename == config name):1import torch
2from huggingface_hub import hf_hub_download
3from sp.configs import Config, Dataset
4from sp.loaders import load_model
5
6name = "DG-T-SP" # e.g. DG-T-SP, SL-T-V, ...
7ckpt = hf_hub_download("LorenzoLamberti94/spiking-patches", f"{name}.ckpt")
8
9# rebuild the exact config used for training
10from train import DEFAULT_CONFIGS
11_, config = DEFAULT_CONFIGS[name]
12model = load_model(config)
13model.load_state_dict(torch.load(ckpt, map_location="cpu")["state_dict"])
14model.eval()