Spaces:
Sleeping
Sleeping
mvasani3690 commited on
Update mile2.py
Browse files
mile2.py
CHANGED
|
@@ -11,7 +11,10 @@ st.write('Welcome to my Sentiment Analysis app!')
|
|
| 11 |
st.markdown("Sentiment Analysis App using 'streamlit' hosted on hugging spaces ")
|
| 12 |
st.markdown("")
|
| 13 |
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
| 15 |
form = st.form(key='sentiment-form')
|
| 16 |
submit = form.form_submit_button('Submit')
|
| 17 |
|
|
|
|
| 11 |
st.markdown("Sentiment Analysis App using 'streamlit' hosted on hugging spaces ")
|
| 12 |
st.markdown("")
|
| 13 |
|
| 14 |
+
|
| 15 |
+
user_input = "I am happy to build a Sentiment Analysis App!"
|
| 16 |
+
text_input = st.text_input("Enter Text", value=user_input)
|
| 17 |
+
|
| 18 |
form = st.form(key='sentiment-form')
|
| 19 |
submit = form.form_submit_button('Submit')
|
| 20 |
|