File size: 1,113 Bytes
89e5e58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175d274
 
 
89e5e58
 
 
 
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
### Stolen from https://huggingface.co/spaces/Datatrooper/zero-shot-image-classification/tree/main

from turtle import title
import gradio as gr
from transformers import pipeline
import numpy as np
from PIL import Image


pipe = pipeline("zero-shot-image-classification", model="openai/clip-vit-base-patch32")
images="dog.jpg"

def shot(image, labels_text):
    PIL_image = Image.fromarray(np.uint8(image)).convert('RGB')
    labels = labels_text.split(",")
    res = pipe(images=PIL_image, 
           candidate_labels=labels,
           hypothesis_template= "This is a photo of a {}")
    return {dic["label"]: dic["score"] for dic in res}
    
iface = gr.Interface(shot, 
                    ["image", "text"], 
                    "label", 
                    examples=[["caesar.jpg", "dog,cat,bird"], 
                              ["benny.jpg", "dog,cat,bird"],
                              ["turtle.jpg", "belgium,colombia,bird,turtle"]],
                    description="Add a picture and a list of labels separated by commas",
                    title="Zero-shot Image Classification")

iface.launch()