Pattr commited on
Commit
b05fd3e
·
verified ·
1 Parent(s): 5123ae9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -61,8 +61,8 @@ params = {
61
  'seasonality_prior_scale': 0.1,
62
  'interval_width' : 0.2,
63
  }
64
- model = Prophet(**params)
65
- model.fit(get_dataset())
66
 
67
  def will_rain(year, month, date):
68
  _date = pd.to_datetime(f'{year}-{month}-{date}')
 
61
  'seasonality_prior_scale': 0.1,
62
  'interval_width' : 0.2,
63
  }
64
+ prophet_model = Prophet(**params)
65
+ prophet_model.fit(get_dataset())
66
 
67
  def will_rain(year, month, date):
68
  _date = pd.to_datetime(f'{year}-{month}-{date}')