TuanScientist commited on
Commit
f37e124
·
1 Parent(s): 21cc39d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -38,7 +38,7 @@ m = CustomNeuralProphet(
38
  learning_rate=0.03,
39
  )
40
 
41
- m.fit(df, freq='D', epochs=10, validate_each_epoch=True, valid_p=0.2)
42
 
43
  future = m.make_future_dataframe(df, periods=30, n_historic_predictions=True)
44
  forecast = m.predict(future)
 
38
  learning_rate=0.03,
39
  )
40
 
41
+ m.fit(df, freq='D')
42
 
43
  future = m.make_future_dataframe(df, periods=30, n_historic_predictions=True)
44
  forecast = m.predict(future)