SAVRN
Search Contact SAVRN

Open-weight model · Image classification

tf_efficientnetv2_s.in21k_ft_in1k

by PyTorch Image Models timm/tf_efficientnetv2_s.in21k_ft_in1k

A EfficientNet-v2 image classification model. Trained on ImageNet-21k and fine-tuned 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.

Parameters22M
Context
Weights173.2 MB
Licenseapache-2.0
AccessOpen weights
Monthly Downloads1.8M

Runs On

What it takes to serve tf_efficientnetv2_s.in21k_ft_in1k (22M 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.1 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.

SAVRN's Notes on tf_efficientnetv2_s.in21k_ft_in1k

Twenty-two million parameters, five files, 173 MB on disk. This EfficientNet-v2 classifier labels images, and its memory need rounds to 0.1 GB at 16-bit and to zero at 8-bit and 4-bit; it fits beside anything. Our cheapest listed host, one MI300X with 192 GB, runs $1.85 per hour on demand, but nobody should rent that card for this model alone; put it on a card that is already busy and the question becomes throughput per dollar, not memory.

On the license side there is nothing to negotiate. Apache 2.0 allows commercial use, modification and redistribution, includes an express patent grant, and asks only that you keep the license and copyright notices and state significant changes. Before fine-tuning, check the lineage: trained on ImageNet-21k, fine-tuned on ImageNet-1k in TensorFlow by the paper authors, then ported to PyTorch by Ross Wightman, with the method in arXiv:2104.00298.

Model Card

By PyTorch Image Models, published under apache-2.0, revision ea9abc143ea2.

Model card for tf_efficientnetv2_s.in21k_ft_in1k

A EfficientNet-v2 image classification model. Trained on ImageNet-21k and fine-tuned on ImageNet-1k in Tensorflow by paper authors, ported to PyTorch by Ross Wightman.

Model Details

  • Model Type: Image classification / feature backbone
  • Model Stats:
  • Params (M): 21.5
  • GMACs: 5.4
  • Activations (M): 22.7
  • Image size: train = 300 x 300, test = 384 x 384
  • Papers:
  • EfficientNetV2: Smaller Models and Faster Training: https://arxiv.org/abs/2104.00298
  • Dataset: ImageNet-1k
  • Pretrain Dataset: ImageNet-21k
  • Original: https://github.com/tensorflow/tpu/tree/master/models/official/efficientnet

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('tf_efficientnetv2_s.in21k_ft_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 (379 words)

Identity and Version

Repository
timm/tf_efficientnetv2_s.in21k_ft_in1k
Publisher
PyTorch Image Models
Task
Image classification
Modality
Image
Library
timm
Parameters
22M parameters
Languages
Not stated by the source
Revision
ea9abc143ea2b9d8e1ec1de277bce02149b9cf0e
First published
2022-12-13
Last updated
2025-01-21

Files and Weights

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

Weights2 files · 173.2 MB
Configuration1 file · 638 B
Documentation1 file · 4.2 KB
Repository1 file · 1.5 KB
Every file
FileTypeSizeSHA-256
model.safetensorsWeights86.5 MB 6f1933fb6c0d
pytorch_model.binWeights86.7 MB 40ed79ccf7aa
config.jsonConfiguration638 B
README.mdDocumentation4.2 KB
.gitattributesRepository1.5 KB

License and Download

License
apache-2.0
Access
Open weights, no gate
Download size
173.2 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:2104.00298
  • Trained on (disclosed) imagenet-1k
  • Trained on (disclosed) imagenet-21k

Memory Requirements

PrecisionWeights in memory
As published173.2 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.

Questions About tf_efficientnetv2_s.in21k_ft_in1k

How much GPU memory does tf_efficientnetv2_s.in21k_ft_in1k need?

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

What is the cheapest GPU to run tf_efficientnetv2_s.in21k_ft_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 tf_efficientnetv2_s.in21k_ft_in1k commercially?

Yes. tf_efficientnetv2_s.in21k_ft_in1k is released under Apache License 2.0. The Apache License 2.0 is a permissive open-source license. It permits commercial use, modification and redistribution. It requires keeping the license and copyright notices and any NOTICE file, stating significant changes, and it includes an express patent grant from contributors.

Similar Models

Model · Image classification

resnet34.a1_in1k

PyTorch Image Models

A ResNet-B image classification model. single layer 7x7 convolution with pooling 1x1 convolution shortcut downsample Trained on ImageNet-1k in timm using recipe template described below. ResNet Strikes Back A1 recipe - Deep Residual Learning for Image Recognition: https://arxiv.org/abs/1512.03385 Explore the dataset and runtime metrics of this model in timm model results.

Open weights apache-2.0 22M parameters timm

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 22M parameters timm

Model · Image classification

FGVCBoeing737

Chaiyakrit

This model is a fine-tuned version of microsoft/resnet-50 on the imagefolder dataset. It achieves the following results on the evaluation set: The following hyperparameters were used during training: - learningrate: 0.0001 - trainbatchsize: 8 - evalbatchsize: 16 - gradientaccumulationsteps: 2 - totaltrainbatchsize: 16 - lrschedulertype: cosine - numepochs: 20 - labelsmoothingfactor: 0.1 - Transformers 5.16.1 - Pytorch 2.11.0+cu128 - Datasets 4.8.5 - Tokenizers 0.23.1

Open weights apache-2.0 24M parameters transformers

Model · Image classification

regnety_032.ra_in1k

PyTorch Image Models

A RegNetY-3.2GF image classification model. Trained on ImageNet-1k by Ross Wightman in timm. The timm RegNet implementation includes a number of enhancements not present in other implementations, including: stochastic depth gradient checkpointing layer-wise LR decay configurable output stride (dilation) configurable activation and norm layers option for a pre-activation bottleneck block used in RegNetV variant only known RegNetZ model definitions with pretrained weights Explore the dataset and runtime metrics of this model in timm model results. For the comparison summary below, the rain1k, ra3in1k, chin1k, sw, and lion tagged weights are trained in timm.

Open weights apache-2.0 20M parameters timm

Model · Image classification

resnet50_gn.a1h_in1k

PyTorch Image Models

A ResNet-B image classification model. single layer 7x7 convolution with pooling 1x1 convolution shortcut downsample Trained on ImageNet-1k in timm using recipe template described below. Based on ResNet Strikes Back A1 recipe Stronger dropout, stochastic depth, and RandAugment than paper A1 recipe - Deep Residual Learning for Image Recognition: https://arxiv.org/abs/1512.03385 Explore the dataset and runtime metrics of this model in timm model results.

Open weights apache-2.0 26M parameters timm

Model · Image classification

resnet50.a1_in1k

PyTorch Image Models

A ResNet-B image classification model. single layer 7x7 convolution with pooling 1x1 convolution shortcut downsample Trained on ImageNet-1k in timm using recipe template described below. ResNet Strikes Back A1 recipe - Deep Residual Learning for Image Recognition: https://arxiv.org/abs/1512.03385 Explore the dataset and runtime metrics of this model in timm model results.

Open weights apache-2.0 26M parameters timm