File size: 484 Bytes
676a921
dad64f0
8242945
 
 
 
 
676a921
dad64f0
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import gradio as gr
from transformers import pipeline
import os

token = os.environ.get("HF_TOKEN")

classifier = pipeline(model="Yanni8/star-predictor", token=token)


def predict(text):
    labels = classifier(text, return_all_scores=True)[0]
    return  {label['label']: label['score'] for label in labels}

iface = gr.Interface(
    fn=predict, 
    inputs=gr.Textbox(lines=7, label="Input Text"), 
    outputs=gr.Label(num_top_classes=3, label="Predicted Star")
)

iface.launch()