Julien Simon
commited on
Commit
•
2408ada
1
Parent(s):
e930d0c
Fix output
Browse files
app.py
CHANGED
@@ -4,10 +4,12 @@ from transformers import pipeline
|
|
4 |
classifier = pipeline("text-classification", model="juliensimon/distilbert-amazon-shoe-reviews")
|
5 |
|
6 |
def predict(review):
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
11 |
|
12 |
iface = gr.Interface(fn=predict, inputs="text", outputs="text")
|
13 |
-
iface.launch()
|
|
|
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()
|