eagle0504 commited on
Commit
c18aea7
1 Parent(s): d16a4e3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -15,6 +15,7 @@ from utils.helper import *
15
 
16
 
17
  # Streamlit interface
 
18
  st.title('Stock Forecasting App')
19
 
20
  with st.sidebar:
@@ -23,6 +24,11 @@ with st.sidebar:
23
  start_date = st.date_input('Start Date', dt.date(2020, 1, 1))
24
  end_date = st.date_input('End Date', dt.date.today())
25
  num_of_epochs = st.number_input('Insert a number', step=1, min_value=2, max_value=100, value=10)
 
 
 
 
 
26
 
27
  look_back = 50
28
 
 
15
 
16
 
17
  # Streamlit interface
18
+ st.set_page_config(layout="wide")
19
  st.title('Stock Forecasting App')
20
 
21
  with st.sidebar:
 
24
  start_date = st.date_input('Start Date', dt.date(2020, 1, 1))
25
  end_date = st.date_input('End Date', dt.date.today())
26
  num_of_epochs = st.number_input('Insert a number', step=1, min_value=2, max_value=100, value=10)
27
+ st.markdown(
28
+ f"""
29
+ For webpage, please click [here](https://huggingface.co/spaces/eagle0504/stock-forecast).
30
+ """
31
+ )
32
 
33
  look_back = 50
34