PyTorch image models, scripts, pretrained weights -- ResNet, ResNeXT, EfficientNet, EfficientNetV2, NFNet, Vision Transformer, MixNet, MobileNet-V3/V2, RegNet, DPN, CSPNet, and more
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Ross Wightman 1a15502fa4
mkdocs sortable tables.js
4 years ago
.github/workflows autosquash github workflow didn't work out, removing 4 years ago
convert Add working Gluon Xception-65 model. Some cleanup still needed. 5 years ago
docs mkdocs sortable tables.js 4 years ago
notebooks ImageNet-1k vs ImageNet-v2 comparison 5 years ago
results Re-ran batch validation on all models across all sets 4 years ago
tests More uniform treatment of classifiers across all models, reduce code duplication. 4 years ago
timm Bump version to 0.2.0, ready to roll (I think) 4 years ago
.gitattributes Add .gitattributes 5 years ago
.gitignore Implement Eca modules 4 years ago
LICENSE Add Apache LICENSE file 5 years ago
MANIFEST.in Fix pruned txt files not being installed during pip install 4 years ago
README.md Bump version to 0.2.0, ready to roll (I think) 4 years ago
avg_checkpoints.py Fix some attributions, add copyrights to some file docstrings 4 years ago
clean_checkpoint.py Fix some attributions, add copyrights to some file docstrings 4 years ago
distributed_train.sh Fix distributed train script 5 years ago
hubconf.py Simpler approach to loading entrypoints in hubconf works properly 4 years ago
inference.py Merge branch 'logger' into features. Change 'logger' to '_logger'. 4 years ago
mkdocs.yml More documentation updates, fix a typo 4 years ago
requirements-docs.txt configure mkdocs based documentation 4 years ago
requirements-sotabench.txt Update requirements so PyTorch 1.4 is min, add separate sotabench reqs to force 1.4 and prevent error with 1.5 4 years ago
requirements.txt Update requirements so PyTorch 1.4 is min, add separate sotabench reqs to force 1.4 and prevent error with 1.5 4 years ago
setup.py Update setup.py 4 years ago
sotabench.py Update README with model results and attribution. Make scheduler factory bit more robust to arg differences, add noise to plateau lr and fix min/max. 4 years ago
sotabench_setup.sh Update requirements so PyTorch 1.4 is min, add separate sotabench reqs to force 1.4 and prevent error with 1.5 4 years ago
train.py Add more augmentation arguments, including a no_aug disable flag. Fix #209 4 years ago
validate.py Update results csv file rank/diff script and small validate script tweak for batch validation 4 years ago

README.md

PyTorch Image Models, etc

What's New

Aug 5, 2020

Universal feature extraction, new models, new weights, new test sets.

  • All models support the features_only=True argument for create_model call to return a network that extracts feature maps from the deepest layer at each stride.
  • New models
    • CSPResNet, CSPResNeXt, CSPDarkNet, DarkNet
    • ReXNet
    • (Modified Aligned) Xception41/65/71 (a proper port of TF models)
  • New trained weights
    • SEResNet50 - 80.3
    • CSPDarkNet53 - 80.1 top-1
    • CSPResNeXt50 - 80.0 to-1
    • DPN68b - 79.2 top-1
    • EfficientNet-Lite0 (non-TF ver) - 75.5 (trained by @hal-314)
  • Add 'real' labels for ImageNet and ImageNet-Renditions test set, see results/README.md
  • Train script and loader/transform tweaks to punch through more aug arguments
  • README and documentation overhaul. See initial (WIP) documentation at https://rwightman.github.io/pytorch-image-models/

June 11, 2020

Bunch of changes:

  • DenseNet models updated with memory efficient addition from torchvision (fixed a bug), blur pooling and deep stem additions
  • VoVNet V1 and V2 models added, 39 V2 variant (ese_vovnet_39b) trained to 79.3 top-1
  • Activation factory added along with new activations:
    • select act at model creation time for more flexibility in using activations compatible with scripting or tracing (ONNX export)
    • hard_mish (experimental) added with memory-efficient grad, along with ME hard_swish
    • context mgr for setting exportable/scriptable/no_jit states
  • Norm + Activation combo layers added with initial trial support in DenseNet and VoVNet along with impl of EvoNorm and InplaceAbn wrapper that fit the interface
  • Torchscript works for all but two of the model types as long as using Pytorch 1.5+, tests added for this
  • Some import cleanup and classifier reset changes, all models will have classifier reset to nn.Identity on reset_classifer(0) call
  • Prep for 0.1.28 pip release

May 12, 2020

May 3, 2020

May 1, 2020

  • Merged a number of execellent contributions in the ResNet model family over the past month
  • 200 pretrained models in total now with updated results csv in results folder

April 5, 2020

  • Add some newly trained MobileNet-V2 models trained with latest h-params, rand augment. They compare quite favourably to EfficientNet-Lite
    • 3.5M param MobileNet-V2 100 @ 73%
    • 4.5M param MobileNet-V2 110d @ 75%
    • 6.1M param MobileNet-V2 140 @ 76.5%
    • 5.8M param MobileNet-V2 120d @ 77.3%

March 18, 2020

  • Add EfficientNet-Lite models w/ weights ported from Tensorflow TPU
  • Add RandAugment trained ResNeXt-50 32x4d weights with 79.8 top-1. Trained by Andrew Lavin (see Training section for hparams)

Introduction

PyTorch Image Models (timm) is a collection of image models, layers, utilities, optimizers, schedulers, data-loaders / augmentations, and reference training / validation scripts that aim to pull together a wide variety of SOTA models with ability to reproduce ImageNet training results.

The work of many others is present here. I've tried to make sure all source material is acknowledged via links to github, arxiv papers, etc in the README, documentation, and code docstrings. Please let me know if I missed anything.

Models

All model architecture families include variants with pretrained weights. The are variants without any weights. Help training new or better weights is always appreciated. Here are some example training hparams to get you started.

A full version of the list below with source links can be found in the documentation.

Features

Several (less common) features that I often utilize in my projects are included. Many of their additions are the reason why I maintain my own set of models, instead of using others' via PIP:

Results

Model validation results can be found in the documentation and in the results tables

Getting Started

See the documentation