Disclaimer: The team releasing MobileViT did not write a model card for this model so this model card has been written by the Hugging Face team.
Model description
MobileViT is a light-weight, low latency convolutional neural network that combines MobileNetV2-style layers with a new block that replaces local processing in convolutions with global processing using transformers. As with ViT (Vision Transformer), the image data is converted into flattened patches before it is processed by the transformer layers. Afterwards, the patches are "unflattened" back into feature maps. This allows the MobileViT-block to be placed anywhere inside a CNN. MobileViT does not require any positional embeddings.
Intended uses & limitations
You can use the raw model for image classification. See the
model hub
to look for fine-tuned versions on a task that interests you.
How to use
Here is how to use this model to classify an image of the COCO 2017 dataset into one of the 1,000 ImageNet classes:
from transformers import MobileViTFeatureExtractor, MobileViTForImageClassification
from PIL import Image
import requests
url = "http://images.cocodataset.org/val2017/000000039769.jpg"
image = Image.open(requests.get(url, stream=True).raw)
feature_extractor = MobileViTFeatureExtractor.from_pretrained("apple/mobilevit-small")
model = MobileViTForImageClassification.from_pretrained("apple/mobilevit-small")
inputs = feature_extractor(images=image, return_tensors="pt")
outputs = model(**inputs)
logits = outputs.logits
# model predicts one of the 1000 ImageNet classes
predicted_class_idx = logits.argmax(-1).item()
print("Predicted class:", model.config.id2label[predicted_class_idx])
Currently, both the feature extractor and model support PyTorch.
Training data
The MobileViT model was pretrained on
ImageNet-1k
, a dataset consisting of 1 million images and 1,000 classes.
Training procedure
Preprocessing
Training requires only basic data augmentation, i.e. random resized cropping and horizontal flipping.
To learn multi-scale representations without requiring fine-tuning, a multi-scale sampler was used during training, with image sizes randomly sampled from: (160, 160), (192, 192), (256, 256), (288, 288), (320, 320).
At inference time, images are resized/rescaled to the same resolution (288x288), and center-cropped at 256x256.
Pixels are normalized to the range [0, 1]. Images are expected to be in BGR pixel order, not RGB.
Pretraining
The MobileViT networks are trained from scratch for 300 epochs on ImageNet-1k on 8 NVIDIA GPUs with an effective batch size of 1024 and learning rate warmup for 3k steps, followed by cosine annealing. Also used were label smoothing cross-entropy loss and L2 weight decay. Training resolution varies from 160x160 to 320x320, using multi-scale sampling.
@inproceedings{vision-transformer,
title = {MobileViT: Light-weight, General-purpose, and Mobile-friendly Vision Transformer},
author = {Sachin Mehta and Mohammad Rastegari},
year = {2022},
URL = {https://arxiv.org/abs/2110.02178}
}
Runs of apple mobilevit-small on huggingface.co
8.1K
Total runs
-213
24-hour runs
-526
3-day runs
-393
7-day runs
-1.1M
30-day runs
More Information About mobilevit-small huggingface.co Model
mobilevit-small huggingface.co is an AI model on huggingface.co that provides mobilevit-small's model effect (), which can be used instantly with this apple mobilevit-small model. huggingface.co supports a free trial of the mobilevit-small model, and also provides paid use of the mobilevit-small. Support call mobilevit-small model through api, including Node.js, Python, http.
mobilevit-small huggingface.co is an online trial and call api platform, which integrates mobilevit-small's modeling effects, including api services, and provides a free online trial of mobilevit-small, you can try mobilevit-small online for free by clicking the link below.
apple mobilevit-small online free url in huggingface.co:
mobilevit-small is an open source model from GitHub that offers a free installation service, and any user can find mobilevit-small on GitHub to install. At the same time, huggingface.co provides the effect of mobilevit-small install, users can directly use mobilevit-small installed effect in huggingface.co for debugging and trial. It also supports api for free installation.