microprediction / timemachines

Predict time-series with one line of code.
https://www.microprediction.com/blog/popular-timeseries-packages
MIT License
397 stars 51 forks source link

neural prophet API breaking change. #120

Open microprediction opened 1 year ago

microprediction commented 1 year ago

See https://github.com/microprediction/timemachines/actions/runs/3261199292/jobs/5355610148

microprediction commented 1 year ago
        model = NeuralProphet(**used_params)
        df = pd.DataFrame(columns=['y'], data=y)
        df['ds'] = pd.date_range(start='2021-01-01', periods=len(y), freq=freq)
       metrics = model.fit(df, freq=freq, epochs=40, progress_bar=False)
       TypeError: fit() got an unexpected keyword argument 'epochs'