Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,7 @@
|
|
1 |
import streamlit as st
|
2 |
from transformers import pipeline
|
3 |
|
4 |
-
|
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")
|