Skip to content

Remove parallel and num_cores from AutoARIMA #576

@mjanson

Description

@mjanson

Description

Per the AutoARIMA pydoc was expecting to be able to fit AutoARIMA as follows:

df = pd.read_csv('https://datasets-nixtla.s3.amazonaws.com/air-passengers.csv')
sf = StatsForecast(
models = [AutoARIMA(stepwise=False,
                    parallel=True,
                    season_length=12,
                    num_cores=4,
                    trace=False)],
freq = 'M'
)
sf.fit(df)

However, in doing so, receiving NotImplementedError: parallel=True (details in linked gist)

Link

https://gist.github.com/mjanson/5fa32e7b83fac034eb522e6035e0aa32

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions