64 lines
1.6 KiB
ReStructuredText
64 lines
1.6 KiB
ReStructuredText
Auto Models
|
|
=====================
|
|
|
|
AutoTCN
|
|
-------------------------------------------
|
|
|
|
AutoTCN is a TCN forecasting model with Auto tuning.
|
|
Other API follows its base class(BasePytorchAutomodel).
|
|
|
|
.. automodule:: zoo.chronos.autots.model.auto_tcn
|
|
:members:
|
|
:undoc-members:
|
|
:show-inheritance:
|
|
|
|
|
|
AutoLSTM
|
|
----------------------------------------
|
|
|
|
AutoLSTM is an LSTM forecasting model with Auto tuning.
|
|
Other API follows its base class(BasePytorchAutomodel).
|
|
|
|
.. automodule:: zoo.chronos.autots.model.auto_lstm
|
|
:members:
|
|
:undoc-members:
|
|
:show-inheritance:
|
|
|
|
AutoSeq2Seq
|
|
----------------------------------------
|
|
|
|
AutoSeq2Seq is an Seq2Seq forecasting model with Auto tuning.
|
|
Other API follows its base class(BasePytorchAutomodel).
|
|
|
|
.. automodule:: zoo.chronos.autots.model.auto_seq2seq
|
|
:members:
|
|
:undoc-members:
|
|
:show-inheritance:
|
|
|
|
AutoARIMA
|
|
----------------------------------------
|
|
|
|
AutoARIMA is an ARIMA forecasting model with Auto tuning.
|
|
|
|
.. automodule:: zoo.chronos.autots.model.auto_arima
|
|
:members:
|
|
:undoc-members:
|
|
:show-inheritance:
|
|
|
|
AutoProphet
|
|
----------------------------------------
|
|
|
|
AutoProphet is a Prophet forecasting model with Auto tuning.
|
|
|
|
.. automodule:: zoo.chronos.autots.model.auto_prophet
|
|
:members:
|
|
:undoc-members:
|
|
:show-inheritance:
|
|
|
|
BasePytorchAutomodel
|
|
------------------------------------------------------------
|
|
AutoLSTM, AutoSeq2Seq and AutoTCN all follow the same API as stated below.
|
|
|
|
.. autoclass:: zoo.chronos.autots.model.base_automodel.BasePytorchAutomodel
|
|
:members:
|
|
:show-inheritance:
|