amissier commited on
Commit
c835279
·
1 Parent(s): 67377f4

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -0
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()