Downloads · 30 days
24
2% of all-time downloads
facebook/regnet-x-080
regnet-x-080 is a image classification model from facebook. Use it when you need a label for an image. It is set up for transformers. The card lists the license as apache-2.0.
RegNet model trained on imagenet-1k. It was introduced in the paper Designing Network Design Spaces and first released in this repository.
Downloads · 30 days
24
2% of all-time downloads
All-time downloads
1.1K
Public
Repo size
477 MB
Likes
0
Public
Click a slice to open those files.
.h5159 MB · 50%
From the Hugging Face model README
RegNet model trained on imagenet-1k. It was introduced in the paper Designing Network Design Spaces and first released in this repository.
Disclaimer: The team releasing RegNet did not write a model card for this model so this model card has been written by the Hugging Face team.
The authors design search spaces to perform Neural Architecture Search (NAS). They first start from a high dimensional search space and iteratively reduce the search space by empirically applying constraints based on the best-performing models sampled by the current search space.

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.
Here is how to use this model:
>>> from transformers import AutoFeatureExtractor, RegNetForImageClassification
>>> import torch
>>> from datasets import load_dataset
>>> dataset = load_dataset("huggingface/cats-image")
>>> image = dataset["test"]["image"][0]
>>> feature_extractor = AutoFeatureExtractor.from_pretrained("zuppif/regnet-y-040")
>>> model = RegNetForImageClassification.from_pretrained("zuppif/regnet-y-040")
>>> inputs = feature_extractor(image, return_tensors="pt")
>>> with torch.no_grad():
... logits = model(**inputs).logits
>>> # model predicts one of the 1000 ImageNet classes
>>> predicted_label = logits.argmax(-1).item()
>>> print(model.config.id2label[predicted_label])
'tabby, tabby cat'
For more code examples, we refer to the documentation.