Spaces:
Build error
Build error
File size: 965 Bytes
33f1383 d262363 33f1383 |
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 |
import gradio as gr
from transformers import pipeline
pipe = pipeline("text-classification", model="clp/xlm-roberta-base-finetuned-marc")
label2emoji = {"terrible": "💩", "poor": "😾", "ok": "🐱", "good": "😺", "great": "😻"}
def predict(text):
preds = pipe(text)[0]
return label2emoji[preds["label"]], round(preds["score"], 5)
predict("I love this soccer ball")
gradio_ui = gr.Interface(
fn=predict,
title="Predicting review scores from customer reviews",
description="Enter some review text about an Amazon product and check what the model predicts for it's star rating.",
inputs=[
gr.inputs.Textbox(lines=5, label="Paste some text here"),
],
outputs=[
gr.outputs.Textbox(label="Label"),
gr.outputs.Textbox(label="Score"),
],
examples=[
["I love these running shoes"], ["J'adore ces chaussures de course"], ["Ich liebe diese Laufschuhe"]
],
)
gradio_ui.launch(debug=True) |