regnet-y-10b-seer / README.md
zuppif's picture
Upload README.md
65cbec0
|
raw
history blame
1.72 kB
metadata
license: apache-2.0
tags:
  - vision

RegNetModel

RegNetModel model was introduced in the paper Self-supervised Pretraining of Visual Features in the Wild and first released in this repository.

Disclaimer: The team releasing RegNetModel did not write a model card for this model so this model card has been written by the Hugging Face team.

Model description

This gigantic model is a scale up RegNetY model trained on one bilion random images.

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, RegNetModel
>>> 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-040")
>>> model = RegNetModel.from_pretrained("facebook/regnet-y-040")

>>> inputs = feature_extractor(image, return_tensors="pt")

>>> with torch.no_grad():
...     outputs = model(**inputs)

>>> last_hidden_states = outputs.last_hidden_state
>>> list(last_hidden_states.shape)
[1, 1088, 7, 7]

For more code examples, we refer to the documentation.