File size: 1,231 Bytes
e3899b1
 
db64b8e
e3899b1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from transformers import pipeline
import gradio as gr
classifier = pipeline("zero-shot-classification", model="oigele/Fb_improved_zeroshot")
def wrap_classifier(text, labels, template):
    labels = labels.split(",")
    outputs = classifier(text, labels, hypothesis_template=template)
    return outputs["labels"][0]
gr.Interface(
    fn=wrap_classifier,
    title="Zero-shot Classification",
    inputs=[
        gr.inputs.Textbox(
            lines=3,
            label="Text to classify",
            default="Furry fandom"
            ),
        gr.inputs.Textbox(
            lines=1,
            label="Candidate labels separated with commas (no spaces)",
            default="good,bad",
            placeholder="good,bad",
            ),
        gr.inputs.Textbox(lines=1, label="Template", default="Asexuality is {}.", placeholder="Asexuality is {}.")
    ],
    outputs=[
        gr.outputs.Textbox(label="Predicted label")
    ],
    enable_queue=True,
    allow_screenshot=False,
    allow_flagging=False,
#    examples=[
#        ["Indian state rolls out wireless broadband Government in South Indian state of Kerala sets up wireless kiosks as part of initiative to bridge digital divide."]
#    ]
).launch(debug=True)