File size: 2,463 Bytes
37f7a9f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
import json
from typing import List
import torch
import torch.nn.functional as F
import torchvision.transforms as T
from PIL import Image
from torchvision.transforms._transforms_video import NormalizeVideo
# Device on which to run the model
# Set to cuda to load on GPU
device = "cpu"
# Pick a pretrained model
model_name = "omnivore_swinB"
model = torch.hub.load("facebookresearch/omnivore:main", model=model_name)
# Set to eval mode and move to desired device
model = model.to(device)
model = model.eval()
os.system("wget https://s3.amazonaws.com/deep-learning-models/image-models/imagenet_class_index.json")
with open("imagenet_class_index.json", "r") as f:
imagenet_classnames = json.load(f)
# Create an id to label name mapping
imagenet_id_to_classname = {}
for k, v in imagenet_classnames.items():
imagenet_id_to_classname[k] = v[1]
os.system("wget -O library.jpg https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/13-11-02-olb-by-RalfR-03.jpg/800px-13-11-02-olb-by-RalfR-03.jpg")
def inference(img):
image = img
image_transform = T.Compose(
[
T.Resize(224),
T.CenterCrop(224),
T.ToTensor(),
T.Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]),
]
)
image = image_transform(image)
# The model expects inputs of shape: B x C x T x H x W
image = image[None, :, None, ...]
prediction = model(image, input_type="image")
prediction = F.softmax(prediction, dim=1)
pred_classes = prediction.topk(k=5).indices
pred_class_names = [imagenet_id_to_classname[str(i.item())] for i in pred_classes[0]]
return "Top 5 predicted labels: %s" % ", ".join(pred_class_names)
inputs = gr.inputs.Image(type='filepath')
outputs = gr.outputs.Textbox(label="Output")
title = "Omnivore"
description = "Gradio demo for Revisiting Weakly Supervised Pre-Training of Visual Perception Models. To use it, simply upload your image, or click one of the examples to load them. Read more at the links below."
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2201.08371' target='_blank'>Revisiting Weakly Supervised Pre-Training of Visual Perception Models</a> | <a href='https://github.com/facebookresearch/SWAG' target='_blank'>Github Repo</a></p>"
gr.Interface(inference, inputs, outputs, title=title, description=description, article=article, examples=[['dog.jpg']]).launch(enable_queue=True,cache_examples=True)
|