regnet-y-320-seer-in1k:基于RegNet架构的ImageNet-1k图像分类模型

采用自监督方式在十亿张非精选Instagram图像上预训练,后经ImageNet微调,适用于图像分类任务,提供可靠的图像识别能力。【此简介由AI生成】

分支1Tags0
Hhuggingface-webUpdate README.md
a1a6cb6c创建于 2022年7月1日9次提交
文件最后提交记录最后更新时间
initial commit4 年前
Update README.md3 年前
Add model 4 年前
Add feature extractor 4 年前
Add model 4 年前
Add TF weights (#1) - Add TF weights (db463b1d28a72eeed4a58cd1c663649c7523d835) Co-authored-by: Joao Gante <joaogante@users.noreply.huggingface.co> 3 年前

license: apache-2.0 tags:

  • vision
  • image-classification

datasets:

  • imagenet-1k

widget:


RegNet

RegNet model trained on imagenet-1k. It was introduced in the paper Vision Models Are More Robust And Fair When Pretrained On Uncurated Images Without Supervision 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.

Model description

The authors trained RegNets models in a self-supervised fashion on a billion uncurated Instagram images. This model is later fine-tuned on ImageNet.

model image

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:

>>> 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("facebook/regnet-y-320-seer-in1k")
>>> model = RegNetForImageClassification.from_pretrained("facebook/regnet-y-320-seer-in1k")

>>> 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.

项目介绍

采用自监督方式在十亿张非精选Instagram图像上预训练,后经ImageNet微调,适用于图像分类任务,提供可靠的图像识别能力。【此简介由AI生成】

定制我的领域

下载使用量

0

项目总下载次数(含Clone、Pull、 zip 包及 release 下载),每日凌晨更新