roselyu commited on
Commit
1d20147
·
verified ·
1 Parent(s): 3456dab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -1,8 +1,7 @@
1
  import streamlit as st
2
  from transformers import pipeline
3
 
4
- # inital value of sentiment label
5
- sentiment_label = 0
6
 
7
  # Streamlit application title
8
  st.title("Financial News Sentiment Analysis")
@@ -23,6 +22,10 @@ if st.button("Identify Sentiment"):
23
 
24
  st.write(f"Sentiment: {sentiment_label}")
25
 
 
 
 
 
26
 
27
  # Initialize the question-answering pipeline
28
  qa_pipe = pipeline("question-answering", model="deepset/roberta-base-squad2")
 
1
  import streamlit as st
2
  from transformers import pipeline
3
 
4
+
 
5
 
6
  # Streamlit application title
7
  st.title("Financial News Sentiment Analysis")
 
22
 
23
  st.write(f"Sentiment: {sentiment_label}")
24
 
25
+ # set initial values
26
+ sentiment_label = 0
27
+ context = 0
28
+ question = 0
29
 
30
  # Initialize the question-answering pipeline
31
  qa_pipe = pipeline("question-answering", model="deepset/roberta-base-squad2")