SAVRN
Search Contact SAVRN

Open-weight model · Image classification

edgenext_small.usi_in1k

by PyTorch Image Models timm/edgenext_small.usi_in1k

An EdgeNeXt image classification model. Trained on ImageNet-1k by paper authors using distillation (USI as per Solving ImageNet).

Parameters6M
Context
Weights44.8 MB
Licensemit
AccessOpen weights
Monthly Downloads193.5k

Runs On

What it takes to serve edgenext_small.usi_in1k (6M parameters): the memory its weights need at each precision, and the cheapest way to rent enough data-center GPUs to hold them.

PrecisionWeightsMemory neededCheapest setupPer hourAlso fits
16-bit 0.0 GB 0.0 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
8-bit 0.0 GB 0.0 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
4-bit 0.0 GB 0.0 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00

Memory is the weights at that precision plus 20% for the runtime and a short context; a long context needs more. Prices are the lowest on-demand hourly rates in the SAVRN Index, read Sep 18, 2026.

Model Card

By PyTorch Image Models, published under mit, revision 81bd8f2ee563.

Model card for edgenext_small.usi_in1k

An EdgeNeXt image classification model. Trained on ImageNet-1k by paper authors using distillation (USI as per Solving ImageNet).

Model Details

  • Model Type: Image classification / feature backbone
  • Model Stats:
  • Params (M): 5.6
  • GMACs: 1.3
  • Activations (M): 9.1
  • Image size: train = 256 x 256, test = 320 x 320
  • Papers:
  • EdgeNeXt: Efficiently Amalgamated CNN-Transformer Architecture for Mobile Vision Applications: https://arxiv.org/abs/2206.10589
  • Solving ImageNet: a Unified Scheme for Training any Backbone to Top Results: https://arxiv.org/abs/2204.03475
  • Dataset: ImageNet-1k
  • Original: https://github.com/mmaaz60/EdgeNeXt

Model Usage

Image Classification

from urllib.request import urlopen
from PIL import Image
import timm

img = Image.open(urlopen(
    'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
))

model = timm.create_model('edgenext_small.usi_in1k', pretrained=True)
model = model.eval()

# get model specific transforms (normalization, resize)
data_config = timm.data.resolve_model_data_config(model)
transforms = timm.data.create_transform(**data_config, is_training=False)

output = model(transforms(img).unsqueeze(0))  # unsqueeze single image into batch of 1

top5_probabilities, top5_class_indices = torch.topk(output.softmax(dim=1) * 100, k=5)

Feature Map Extraction

Read the full model card (434 words)

Identity and Version

Repository
timm/edgenext_small.usi_in1k
Publisher
PyTorch Image Models
Task
Image classification
Modality
Image
Library
timm
Parameters
6M parameters
Languages
Not stated by the source
Revision
81bd8f2ee56330bdf6a7a2e47e1b2b82eb34f978
First published
2023-04-23
Last updated
2025-01-21

Files and Weights

5 files, 44.8 MB in total. The weights are 2 files totalling 44.8 MB in bin, safetensors.

Weights2 files · 44.8 MB
Configuration1 file · 682 B
Documentation1 file · 4.4 KB
Repository1 file · 1.5 KB
Every file
FileTypeSizeSHA-256
model.safetensorsWeights22.4 MB 14d824931ca7
pytorch_model.binWeights22.4 MB d5f9c753e704
config.jsonConfiguration682 B
README.mdDocumentation4.4 KB
.gitattributesRepository1.5 KB

License and Download

License
mit
Access
Open weights, no gate
Download size
44.8 MB
Download from PyTorch Image Models

Released by PyTorch Image Models through its official repository on Hugging Face. Read the license.

Built From

  • Described by arXiv:2204.03475
  • Described by arXiv:2206.10589
  • Trained on (disclosed) imagenet-1k

Memory Requirements

PrecisionWeights in memory
As published44.8 MB
16-bit0.0 GB
8-bit0.0 GB
4-bit0.0 GB

Weights only, from the published parameter count; the key-value cache and runtime add to this.

Compare edgenext_small.usi_in1k

Questions About edgenext_small.usi_in1k

How much GPU memory does edgenext_small.usi_in1k need?

About 0 GB at 16-bit and 0 GB at 4-bit: the weights (6M parameters) plus a working margin. A long context needs more.

What is the cheapest GPU to run edgenext_small.usi_in1k on?

At 16-bit, 1x MI300X from $1.85 an hour; at 4-bit, 1x MI300X from $1.85 an hour, at the lowest on-demand prices the SAVRN Index lists.

Can I use edgenext_small.usi_in1k commercially?

Yes. edgenext_small.usi_in1k is released under MIT License. The MIT License is a short permissive license. It permits commercial use, modification and redistribution, provided the copyright notice and permission notice are included.

Similar Models

A Vision Transformer (ViT) image classification model. Trained on ImageNet-21k and fine-tuned on ImageNet-1k (with additional augmentation and regularization) in JAX by paper authors, ported to PyTorch by Ross Wightman. - How to train your ViT? Data, Augmentation, and Regularization in Vision Transformers: https://arxiv.org/abs/2106.10270 - An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale: https://arxiv.org/abs/2010.11929v2 Explore the dataset and runtime metrics of this model in timm model results.

Open weights apache-2.0 6M parameters timm

Model · Image classification

deit_tiny_patch16_224.fb_in1k

PyTorch Image Models

A DeiT image classification model. Trained on ImageNet-1k by paper authors. - Training data-efficient image transformers & distillation through attention: https://arxiv.org/abs/2012.12877 Explore the dataset and runtime metrics of this model in timm model results.

Open weights apache-2.0 6M parameters timm

Model · Image classification

efficientnet_b0.ra_in1k

PyTorch Image Models

A EfficientNet image classification model. Trained on ImageNet-1k in timm using recipe template described below. RandAugment RA recipe. Inspired by and evolved from EfficientNet RandAugment recipes. Published as B recipe in ResNet Strikes Back. RMSProp (TF 1.0 behaviour) optimizer, EMA weight averaging Step (exponential decay w/ staircase) LR schedule with warmup Explore the dataset and runtime metrics of this model in timm model results.

Open weights apache-2.0 5M parameters timm

A MobileNet-v3 image classification model. Trained on ImageNet-1k in Tensorflow by paper authors, ported to PyTorch by Ross Wightman. Explore the dataset and runtime metrics of this model in timm model results.

Open weights apache-2.0 4M parameters timm

A MobileNet-V4 image classification model. Trained on ImageNet-1k by Ross Wightman. Trained with timm scripts using hyper-parameters inspired by the MobileNet-V4 paper with timm enhancements. NOTE: So far, these are the only known MNV4 weights. Official weights for Tensorflow models are unreleased. - MobileNetV4 -- Universal Models for the Mobile Ecosystem: https://arxiv.org/abs/2404.10518

Open weights apache-2.0 4M parameters timm

Model · Image classification

densenet121.ra_in1k

PyTorch Image Models

A DenseNet image classification model. Pretrained on ImageNet-1k in timm by Ross Wightman using RandAugment RA recipe. Related to B recipe in ResNet Strikes Back.

Open weights apache-2.0 8M parameters timm