Skip to main content
POST
Foundational Time Series Model Multi Series Finetuning

Authorizations

Authorization
string
header
required

HTTPBearer

Body

application/json
series
SeriesWithFutureExogenous · object
required
freq
string
required

The frequency of the data represented as a string. 'D' for daily, 'M' for monthly, 'H' for hourly, and 'W' for weekly frequencies are available.

model
string
default:timegpt-1

Model to use as a string. Common options are (but not restricted to) timegpt-1 and timegpt-1-long-horizon. Full options vary by different users. Contact support@nixtla.io for more information. We recommend using timegpt-1-long-horizon for forecasting if you want to predict more than one seasonal period given the frequency of your data.

finetune_steps
integer
default:10

The number of tuning steps used to train the large time model on the data. Set this value to 0 for zero-shot inference, i.e., to make predictions without any further model tuning.

Required range: x >= 0
finetune_loss
enum<string>
default:default

The loss used to train the large time model on the data. Select from ['default', 'mae', 'mse', 'rmse', 'mape', 'smape', 'poisson']. It will only be used if finetune_steps larger than 0. Default is a robust loss function that is less sensitive to outliers.

Available options:
default,
mae,
mse,
rmse,
mape,
smape,
poisson
finetune_depth
enum<integer>
default:1

The depth of the finetuning. Uses a scale from 1 to 5, where 1 means little finetuning, and 5 means that the entire model is finetuned. Note that this parameter is only effective for timegpt-1 and timegpt-1-long-horizon models, meanwhile it has no effect on the other models. By default, the value is set to 1.

Available options:
1,
2,
3,
4,
5
output_model_id
string | null

ID to assign to the finetuned model

Pattern: ^[a-zA-Z0-9\-_]{1,36}$
finetuned_model_id
string | null

ID of previously finetuned model

Pattern: ^[a-zA-Z0-9\-_]{1,36}$
hist_exog
integer[] | null

Zero-based indices of the exogenous features to treat as historical.

Required range: x >= 0
multivariate
boolean
default:false

Compute multivariate predictions across a batch of multiple time series. Requires all time series with overlapping dates. Note that this is only effective for timegpt-2.1 model and it has no effect on the other models. By default, the value is set to False.

model_parameters
Model Parameters · object | null

Optional dictionary of parameters to customize the behavior of the large time model.

Response

Successful Response

input_tokens
integer
required
Required range: x >= 0
output_tokens
integer
required
Required range: x >= 0
finetune_tokens
integer
required
Required range: x >= 0
finetuned_model_id
string
required
Pattern: ^[a-zA-Z0-9\-_]{1,36}$