XPMaster commited on
Commit
ef63b85
1 Parent(s): b17b602

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -69,7 +69,7 @@ if forecast is not None:
69
  if st.button('Run Grid Search'):
70
  best_aic = float('inf')
71
  best_params = None
72
- for param_set in product(['add', 'mul', None], [True], ['add', 'mul', None], [12]):
73
  _, temp_aic = run_exp_smoothing(city_data, *param_set)
74
  if temp_aic and temp_aic < best_aic:
75
  best_aic = temp_aic
 
69
  if st.button('Run Grid Search'):
70
  best_aic = float('inf')
71
  best_params = None
72
+ for param_set in product(['add', 'mul', None], [False], ['add', 'mul', None], [12]):
73
  _, temp_aic = run_exp_smoothing(city_data, *param_set)
74
  if temp_aic and temp_aic < best_aic:
75
  best_aic = temp_aic