Pragya Jatav commited on
Commit
230c66a
·
1 Parent(s): e20fee6

version changes

Browse files
Files changed (1) hide show
  1. Model_Result_Overview.py +4 -2
Model_Result_Overview.py CHANGED
@@ -113,10 +113,12 @@ if auth_status:
113
  col1, col2 = st.columns(2)
114
 
115
  with col1:
116
- start_date = st.date_input("Start Date: ")
 
117
 
118
  with col2:
119
- end_date = st.date_input("End Date: ")
 
120
 
121
  # Dropdown menu options
122
  options = [
 
113
  col1, col2 = st.columns(2)
114
 
115
  with col1:
116
+ default_date = datetime(2024, 1, 28)
117
+ start_date = st.date_input("Start Date: ",value=default_date)
118
 
119
  with col2:
120
+ default_date = datetime(2024, 2, 24)
121
+ end_date = st.date_input("End Date: ",value=default_date)
122
 
123
  # Dropdown menu options
124
  options = [