Spaces:
Sleeping
Sleeping
Create app.py
Browse files
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()
|