A kitchen-sink benchmark of classic CNNs on CIFAR-10
It collects a dozen canonical convnet implementations so you can train and compare them on CIFAR-10 without hunting down separate repos.

What it does
This repo gathers reference implementations of well-known convolutional networks—VGG, ResNet, DenseNet, DLA, and others—for training on CIFAR-10 with PyTorch. A single main.py script and a tidy accuracy table let you swap architectures and compare results without hunting down separate codebases.
The interesting bit
The README doubles as an informal benchmark leaderboard: every model appears to be trained through the same entry point, so the numbers are at least apples-to-apples within this repo. The best reported score is DLA at 95.47%, though the README offers almost no detail on hyperparameters, hardware, or data augmentation.
Key highlights
- 14 architectures in one place, from
VGG16(92.64%) toDLA(95.47%). - Single
main.pyinterface with a--resumeflag for restarting runs. - Over 6,400 stars, suggesting it is a widely-cited baseline reference.
- Author’s stated goal is simply “playing with PyTorch”—no academic pretense.
Caveats
- The README is extremely terse: no training times, augmentation details, or reproducibility notes.
- A truncated arXiv link for
SimpleDLAsuggests the table has not been carefully proofed.
Verdict Useful if you need a quick CIFAR-10 baseline for classic CNNs; look elsewhere if you want documented training recipes or rigorous reproducibility notes.
Frequently asked
- What is kuangliu/pytorch-cifar?
- It collects a dozen canonical convnet implementations so you can train and compare them on CIFAR-10 without hunting down separate repos.
- Is pytorch-cifar open source?
- Yes — kuangliu/pytorch-cifar is open source, released under the MIT license.
- What language is pytorch-cifar written in?
- kuangliu/pytorch-cifar is primarily written in Python.
- How popular is pytorch-cifar?
- kuangliu/pytorch-cifar has 6.4k stars on GitHub.
- Where can I find pytorch-cifar?
- kuangliu/pytorch-cifar is on GitHub at https://github.com/kuangliu/pytorch-cifar.