File size: 2,324 Bytes
7e5ec66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37d24fd
7e5ec66
 
 
 
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
69
70
71
72
73
74

### 1. Imports and class names setup ###

# Imports
import gradio as gr
import os
import torch

from model import create_vit_model
from timeit import default_timer as timer
from typing import Tuple, Dict

# Setup class names
class_names = ['airplane', 'automobile', 'bird', 'cat', 'deer', 'dog', 'frog', 'horse', 'ship', 'truck']

### 2. Model and Transforms Preparation ###
vit_model, vit_transforms = create_vit_model(num_classes = 10)

# Load save weights
vit_model.load_state_dict(
    torch.load(
        f="vit_cifar10_state_dict.pth",
        map_location=torch.device("cpu") # load the model to the cpu
    )
)

### 3. Predict function ###
def predict(img) -> Tuple[Dict, float]:
  # Timer
  start_time = timer()

  # Transform the input image to work with ViT
  img = vit_transforms(img).unsqueeze(0) # unsqueeze = add batch dimension on 0th index

  # Eval mode and torch inference mode on
  vit_model.eval()
  with torch.inference_mode():
    # Pass transformed image through the model and turn prediction logits into probabilities
    pred_probs = torch.softmax(vit_model(img), dim = 1)

  # Create prediction label and prediction probability dictionary
  pred_labels_and_probs = {class_names[i]: float(pred_probs[0][i]) for i in range(len(class_names))}

  # Calculate prediction time
  end_time = timer()
  pred_time = round(end_time - start_time, 3)

  # Return pred dict and pred time
  return pred_labels_and_probs, pred_time

### 4. Gradio app ###

# Create title for the gradio
title = "Object Classifier - Erdem Atak Version"
description = "ViT computer vision model to classify CIFAR-10 objects"

# Create example list
example_list = [["examples/" + example] for example in os.listdir("examples")]

# Create the gradio demo
demo = gr.Interface(fn = predict, # it maps inputs to outputs
                    inputs = gr.Image(type = "pil"),
                    outputs = [gr.Label(num_top_classes = 3,
                                       label = "Predictions"),
                              gr.Number(label = "Prediction Time (s)")],
                    examples = example_list, # example list above
                    title = title,
                    description = description,
                    )

# launch the demo
demo.launch(debug = False,
            share = True ) # public shareable URL