Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
from transformers import pipeline
|
| 3 |
-
sentiment_task = pipeline("sentiment-analysis"
|
| 4 |
|
| 5 |
st.title("Sentiment Analysis App")
|
| 6 |
userinput=st.text_area("Enter text for analysis")
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
from transformers import pipeline
|
| 3 |
+
sentiment_task = pipeline("sentiment-analysis")
|
| 4 |
|
| 5 |
st.title("Sentiment Analysis App")
|
| 6 |
userinput=st.text_area("Enter text for analysis")
|