antoinecarme / pyaf

PyAF is an Open Source Python library for Automatic Time Series Forecasting built on top of popular pydata modules.
BSD 3-Clause "New" or "Revised" License
459 stars 72 forks source link

support for parallelization #67

Closed mgiangreco closed 7 years ago

mgiangreco commented 7 years ago

Is pyaf capable of running across several cores or threads? I have a hierarchical dataset of over 1M products and >30 groups.

antoinecarme commented 7 years ago

Yes. The best way is to test it ;)

mgiangreco commented 7 years ago

How does one specify the number of cores the training should run across?

antoinecarme commented 7 years ago

You can look at TS/Options.py for possible customizations.

mgiangreco commented 7 years ago

Thanks