ya02 commited on
Commit
c1d00b2
·
verified ·
1 Parent(s): b0789ba

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import pipeline
2
+
3
+ pipe = pipeline("sentiment-analysis")
4
+
5
+ def get_sentiment(input):
6
+ return pipe(input)
7
+
8
+ gr.Interface(
9
+ fn=get_sentiment,
10
+ inputs="text",
11
+ outputs=["text"],
12
+ title="AI Workshop Sentiment Analysis with Transformers",
13
+ description="Get Sentiment (Positive/Negative) for your input",
14
+ ).launch()