File size: 1,339 Bytes
52cf196
 
 
 
 
 
 
 
 
 
 
 
50471fc
52cf196
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import torch
import os
import gradio as gr

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

class_names = ['cardboard', 'glass', 'metal', 'paper', 'plastic', 'trash']

vit, vit_transform = create_vit(output_classes=len(class_names))

vit.load_state_dict(torch.load(f="vit_b_16_dout0.3_10epochs.pth", map_location=torch.device("cpu")))

def predict(img) -> Tuple[Dict, float]:
    start_time = timer()
    img = vit_transform(img).unsqueeze(0)

    vit.eval()
    with torch.inference_mode():
        pred_probs = torch.softmax(vit(img), dim=1)
    
    pred_labels_and_probs = {class_names[i]: float(pred_probs[0][i]) for i in range(len(class_names))}
    pred_time = round(timer() - start_time, 5)
    return pred_labels_and_probs, pred_time

title = "Garbage Sense"
description = "A vision transformer trained to classify garbage into 6 categories on [trashnet](https://github.com/garythung/trashnet)."
article = ""

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

demo = gr.Interface(
    fn=predict,
    inputs=gr.Image(type="pil"),
    outputs=[
        gr.Label(num_top_classes=6, label="Predictions"),
        gr.Number(label="Prediction time (s)"),
    ],
    examples=example_list,
    title=title,
    description=description
)

demo.launch()