mvasani3690 commited on
Commit
9bd7e0d
1 Parent(s): d69519a

Update mile2.py

Browse files
Files changed (1) hide show
  1. mile2.py +4 -1
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
- user_input = st.text_area("Enter your text", value="")
 
 
 
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