Surya152002 commited on
Commit
879b684
·
1 Parent(s): 6d02cce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -44,7 +44,7 @@ ticker = st.selectbox('Select Ticker', ('BTC-USD', 'ETH-USD', 'LTC-USD'))
44
  start_date = st.date_input('Start date', pd.to_datetime('2021-01-01'))
45
  end_date = st.date_input('End date', pd.to_datetime('2023-11-01'))
46
  look_back = st.number_input('Look Back Period',value=60)
47
- prediction_days = st.slider('Days to Predict', 1, 30, 5)
48
 
49
  # Load pre-trained LSTM model and scaler
50
  with st.spinner('Loading model and scaler...'):
 
44
  start_date = st.date_input('Start date', pd.to_datetime('2021-01-01'))
45
  end_date = st.date_input('End date', pd.to_datetime('2023-11-01'))
46
  look_back = st.number_input('Look Back Period',value=60)
47
+ prediction_days = st.slider('Days to Predict', 1, 30, 3)
48
 
49
  # Load pre-trained LSTM model and scaler
50
  with st.spinner('Loading model and scaler...'):