File size: 724 Bytes
4e3dfa8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import gradio as gr
from transformers import pipeline

classifier = pipeline("zero-shot-classification", model="facebook/bart-large-mnli")

def zeroShotClassification(text_input, candidate_labels):
  labels = [label.strip(' ') for label in candidate_labels.split(',')]
  output = {}
  prediction = classifier(text_input, labels)
  for i in range(len(prediction['labels'])):
    output[prediction['labels'][i]] = prediction['scores'][i]
  return output

examples = [["One day I will see the world", "travel, live, die, future"]]

demo = gr.Interface(fn=zeroShotClassification, inputs=[gr.Textbox(label="Input"), gr.Textbox(label="Candidate Labels")], outputs=gr.Label(label="Classification"), examples=examples)
demo.launch()