Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ st.write('1. https://medium.com/@rtkilian/deploy-and-share-your-sentiment-analys
|
|
7 |
st.write('2. https://huggingface.co/learn/nlp-course/chapter1/3?fw=pt')
|
8 |
|
9 |
form = st.form(key='sentiment-form')
|
10 |
-
user_input = form.text_area(label = 'Enter your text')
|
11 |
submit = form.form_submit_button('Submit')
|
12 |
|
13 |
if submit:
|
|
|
7 |
st.write('2. https://huggingface.co/learn/nlp-course/chapter1/3?fw=pt')
|
8 |
|
9 |
form = st.form(key='sentiment-form')
|
10 |
+
user_input = form.text_area(label = 'Enter your text', value = "I love steamlit and hugging face!")
|
11 |
submit = form.form_submit_button('Submit')
|
12 |
|
13 |
if submit:
|