Update app.py
Browse files
app.py
CHANGED
|
@@ -3,7 +3,7 @@ from transformers import pipeline
|
|
| 3 |
|
| 4 |
sentiment_pipeline = pipeline("sentiment-analysis")
|
| 5 |
|
| 6 |
-
st.title("Sentiment Analysis
|
| 7 |
st.write("Enter a sentence to analyze its sentiment:")
|
| 8 |
user_input = st.text_input("userinput")
|
| 9 |
if user_input:
|
|
|
|
| 3 |
|
| 4 |
sentiment_pipeline = pipeline("sentiment-analysis")
|
| 5 |
|
| 6 |
+
st.title("Sentiment Analysis")
|
| 7 |
st.write("Enter a sentence to analyze its sentiment:")
|
| 8 |
user_input = st.text_input("userinput")
|
| 9 |
if user_input:
|