Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
from transformers import pipeline
|
3 |
+
|
4 |
+
classifier = pipeline("text-classification", model="juliensimon/distilbert-amazon-shoe-reviews")
|
5 |
+
|
6 |
+
def predict(review):
|
7 |
+
prediction = classifier(review)
|
8 |
+
print(prediction)
|
9 |
+
stars = prediction[0]['label']
|
10 |
+
stars = (int)(stars.split('_')[1])+1
|
11 |
+
score = 100*prediction[0]['score']
|
12 |
+
return "{} {:.0f}%".format("\U00002B50"*stars, score)
|
13 |
+
|
14 |
+
iface = gr.Interface(fn=predict, inputs="text", outputs="text")
|
15 |
+
iface.launch()
|