Spaces:
Build error
Build error
Commit
·
09aee3b
1
Parent(s):
690a0b1
Delete app.py
Browse files
app.py
DELETED
@@ -1,12 +0,0 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
import gradio as gr
|
3 |
-
from transformers import pipeline
|
4 |
-
pipe = pipeline ('sentiment-analysis')
|
5 |
-
text = st.text_area('enter some text!')
|
6 |
-
def predict_sentiment(text):
|
7 |
-
result = pipe(text)[0]
|
8 |
-
return result['label']
|
9 |
-
|
10 |
-
|
11 |
-
iface = gr.Interface(fn=predict_sentiment, inputs="text", outputs="text")
|
12 |
-
iface.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|