Improve model card metadata and documentation

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +48 -3
README.md CHANGED
@@ -1,9 +1,54 @@
1
  ---
2
  license: mit
 
 
 
 
 
3
  ---
4
 
5
- # DeepEISNN
6
 
7
- Pretrained checkpoints for paper Training Deep Normalization-Free Spiking Neural Networks with Lateral Inhibition.
8
 
9
- Please refer to https://github.com/vwOvOwv/DeepEISNN for the usage of the checkpoints.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ pipeline_tag: image-classification
4
+ tags:
5
+ - spiking-neural-networks
6
+ - snn
7
+ - normalization-free
8
  ---
9
 
10
+ # Training Deep Normalization-Free Spiking Neural Networks with Lateral Inhibition
11
 
12
+ This repository contains the pretrained checkpoints for the paper [Training Deep Normalization-Free Spiking Neural Networks with Lateral Inhibition](https://huggingface.co/papers/2509.23253).
13
 
14
+ [GitHub Repository](https://github.com/vwOvOwv/DeepEISNN) | [Paper (OpenReview)](https://openreview.net/forum?id=U8preGvn5G)
15
+
16
+ ## Introduction
17
+ Spiking Neural Networks (SNNs) are energy-efficient and biologically plausible models. This work proposes a normalization-free learning framework that incorporates lateral inhibition inspired by cortical circuits. By replacing traditional feedforward SNN layers with distinct excitatory (E) and inhibitory (I) neuronal populations, the framework achieves stable training of deep SNNs without relying on explicit normalization schemes.
18
+
19
+ ## Model Performance
20
+
21
+ | Dataset | Arch | T | Top-1 Acc(%) | Model Name|
22
+ |:---:|:---:|:---:|:---:|:---:|
23
+ | CIFAR-10 | ResNet-18 | 4 | 92.06 | CIFAR10-ResNet18 |
24
+ | CIFAR-10 | VGG-8 | 4 | 87.03 | CIFAR10-VGG8 |
25
+ | CIFAR-10 | VGG-11 | 4 | 88.43 | CIFAR10-VGG11 |
26
+ | CIFAR-10 | VGG-16 | 4 | 91.01 | CIFAR10-VGG16 |
27
+ | CIFAR-10 | VGG-19 | 4 | 91.36 | CIFAR10-VGG19 |
28
+ | CIFAR-100 | VGG-16 | 4 | 65.90 | CIFAR100-VGG16 |
29
+ | CIFAR-100 | VGG-19 | 4 | 64.06 | CIFAR100-VGG19 |
30
+ | CIFAR10-DVS | VGG-8 | 10 | 78.40 | CIFAR10DVS-VGG8 |
31
+ | CIFAR10-DVS | VGG-11 | 10 | 78.40 | CIFAR10DVS-VGG11 |
32
+ | DVS-Gesture | VGG-8 | 16 | 95.83 | DVSGesture-VGG8 |
33
+ | TinyImageNet200 | ResNet-18 | 4 | 50.29 | TinyImageNet200-ResNet18 |
34
+
35
+ ## Usage
36
+
37
+ ### Evaluation
38
+ Use the following command from the [official repository](https://github.com/vwOvOwv/DeepEISNN) to quickly evaluate the pretrained checkpoints on the evaluation set. The script will automatically download the corresponding weights from Hugging Face.
39
+
40
+ ```bash
41
+ python eval_pretrained.py --model [Dataset]-[Arch] --data_path [Dataset-Path]
42
+ ```
43
+
44
+ ## Citation
45
+ ```bibtex
46
+ @inproceedings{
47
+ liu2026training,
48
+ title={Training Deep Normalization-Free Spiking Neural Networks with Lateral Inhibition},
49
+ author={Peiyu Liu and Jianhao Ding and Zhaofei Yu},
50
+ booktitle={The Fourteenth International Conference on Learning Representations},
51
+ year={2026},
52
+ url={https://openreview.net/forum?id=U8preGvn5G}
53
+ }
54
+ ```