Deep, torch-backed forecasters.
timeseries do.These models require PyTorch, which TuiML treats as an optional extra:
pip install 'tuiml[torch]'
Importing this package does not import torch, and the classes construct, register and report their parameter schema without it, so list_algorithms() shows the same catalog on every install. The dependency is demanded by fit, which raises an ImportError naming the install command.
They all follow the forecasting convention used by the classical models: fit(y) takes the series itself rather than a design matrix, and predict(steps) returns the next steps values.
>>> from tuiml.algorithms.timeseries.deep import NBEATSForecaster
>>> model = NBEATSForecaster(random_state=0)
>>> model.lookback, model.horizon
(24, 8)