Update app.py
#2
by
maniveer
- opened
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import streamlit as st
|
2 |
from transformers import pipeline
|
3 |
|
4 |
-
st.title("AI Community 9th Dec Workshop Bot")
|
5 |
sentiment_analysis = pipeline("sentiment-analysis")
|
6 |
#user input
|
7 |
user_input = st.text_area("Enter the comment to analyze")
|
|
|
1 |
import streamlit as st
|
2 |
from transformers import pipeline
|
3 |
|
4 |
+
st.title("AI Community 9th Dec Workshop designing sentiment analysis Bot")
|
5 |
sentiment_analysis = pipeline("sentiment-analysis")
|
6 |
#user input
|
7 |
user_input = st.text_area("Enter the comment to analyze")
|