Skip to content
#

forecasting

Here are 1,244 public repositories matching this topic...

sameermahajan
sameermahajan commented Nov 15, 2021

make_future_dataframe doesn't support regressors currently. So code like:

m = Prophet()
m.add_regressor('var')
m.fit(df)
forecasts = m.predict(m.make_future_dataframe(periods=7))

gives an error like:

ValueError: Regressor 'var' missing from dataframe when attempting to generate forecasts

I know prophet may not know what exact values to put for var in each of the rows a

enhancement good first issue
sktime
fkiraly
fkiraly commented Apr 14, 2022

The first entry is being eaten by the Differencer in its current standard setting, which may cause user frustration, especially when combined with a pipeline (which is its "typical use"), see e.g., here: alan-turing-institute/sktime#2452

We should add an NA handling parameter setting and make the default to fill in sth for the first value, e.g., a difference from an

feature request good first issue module:forecasting enhancement
gluon-ts
youngsuk0723
youngsuk0723 commented Jan 12, 2021

Description

(A clear and concise description of what the feature is.)

Sample test

Code

# import ...
def test_
enhancement good first issue
neural_prophet

Time series Timeseries Deep Learning Machine Learning Pytorch fastai | State-of-the-art Deep Learning library for Time Series and Sequences in Pytorch / fastai

  • Updated Apr 14, 2022
  • Jupyter Notebook
pmdarima
nicolaschapados
nicolaschapados commented Nov 14, 2021

Is your feature request related to a problem? Please describe.

It would be nice to directly support simulating from a fitted ARIMA model, e.g. to have a simulate method to call that would delegate to statsmodels.tsa.arima.model.ARIMA.simulate. Right now, the only way I found is to use arima_res_ member of the fitted object.

Describe the solution you'd like

Class `pmdarima.arima.ar

good first issue feature request
flow-forecast
isaacmg
isaacmg commented May 14, 2021

We have a lot of antiquated docstrings that don't render well into ReadTheDocs. A kind of grunge (but incredibly useful) task would be to refactor these docstrings into proper ReadTheDocs format. This would allow us to render them effectively...

documentation help wanted good first issue
julia-shenshina
julia-shenshina commented Jan 20, 2022

🐛 Bug Report

I ran code from How To Reproduce and got strange results: fold_info column in backtest's forecasts was not added to ts[:, segment] block but concatenated separately from other segment's columns.

Expected behavior

I expected smth like

|segment |     segment_0      |     segment_1      |      segment_2     |
------------------------------------------------------
bug good first issue
shibzhou
shibzhou commented Feb 14, 2022

Hello, I think there is an error in the SMAPELoss Numpy implementation.

For the SMAPE function, the NumPy version always gives 100 times the PyTorch result.
Eg:
Numpy: 76.6044944858551
Pytorch: 0.7669

https://github.com/Nixtla/neuralforecast/blob/3248751ccdb1edab2ded9c14d9666eaddd1b1469/neuralforecast/losses/numpy.py#L218-L219

Since the description on the Numpy file was intended to ma

good first issue losses

Improve this page

Add a description, image, and links to the forecasting topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the forecasting topic, visit your repo's landing page and select "manage topics."

Learn more