mariaoliv commited on
Commit
388ba39
1 Parent(s): 384f4fc

add new line

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -17,6 +17,7 @@ classifier = pipeline("sentiment-analysis", model=model, tokenizer=tokenizer)
17
  print(classifier("Thanks a lot for watching the video. Really appreciate it"))
18
 
19
  st.title("Sentiment Analysis of a Tweet")
 
20
  tweet = st.text_input(label="Tweet Text")
21
 
22
 
 
17
  print(classifier("Thanks a lot for watching the video. Really appreciate it"))
18
 
19
  st.title("Sentiment Analysis of a Tweet")
20
+ st.write("Enter text for sentiment analysis")
21
  tweet = st.text_input(label="Tweet Text")
22
 
23