karmat314 commited on
Commit
ed7cc98
1 Parent(s): 7ecfd9f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -4,10 +4,10 @@ from transformers import pipeline
4
  sentiment_pipeline = pipeline("sentiment-analysis")
5
 
6
  st.title("Sentiment Analysis with HuggingFace Spaces")
7
- st.write("Enter a sentence to analyze its sentiment:")
8
 
9
  user_input = st.text_input("")
10
- st.text_input("Enter text here")
11
  if user_input:
12
  result = sentiment_pipeline(user_input)
13
  sentiment = result[0]["label"]
 
4
  sentiment_pipeline = pipeline("sentiment-analysis")
5
 
6
  st.title("Sentiment Analysis with HuggingFace Spaces")
7
+ st.write("this is a text")
8
 
9
  user_input = st.text_input("")
10
+ otherinput = st.text_input("Enter text here")
11
  if user_input:
12
  result = sentiment_pipeline(user_input)
13
  sentiment = result[0]["label"]