Update pages/1_Earnings_Sentiment_Analysis_π_.py
Browse files
pages/1_Earnings_Sentiment_Analysis_π_.py
CHANGED
@@ -9,6 +9,9 @@ st.set_page_config(page_title="Earnings Sentiment Analysis", page_icon="π")
|
|
9 |
st.sidebar.header("Sentiment Analysis")
|
10 |
st.markdown("## Earnings Sentiment Analysis with FinBert-Tone")
|
11 |
|
|
|
|
|
|
|
12 |
if st.session_state['url'] or st.session_state['upload']:
|
13 |
|
14 |
results, title = inference(st.session_state.url,st.session_state.upload)
|
|
|
9 |
st.sidebar.header("Sentiment Analysis")
|
10 |
st.markdown("## Earnings Sentiment Analysis with FinBert-Tone")
|
11 |
|
12 |
+
if "url" not in st.session_state:
|
13 |
+
st.session_state.url = ''
|
14 |
+
|
15 |
if st.session_state['url'] or st.session_state['upload']:
|
16 |
|
17 |
results, title = inference(st.session_state.url,st.session_state.upload)
|