seemapatil commited on
Commit
09aee3b
·
1 Parent(s): 690a0b1

Delete app.py

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