Learn how to manage datasets for real-time forecasting and fine-tuning.
forecast
interface.fine_tune
method on the Sulie client. You can specify the target column and provide an optional description to identify the fine-tuning job. Below is an example with a pandas.DataFrame
.
fine_tune
Name | Description | Default |
---|---|---|
dataset | A Dataset or pandas.DataFrame containing time series data for training. | Required |
target_col | Name of the column to optimize (forecast target). | Required |
id_col | Name of the column to group the DataFrame into series. | None |
description | Optional description of the fine-tuning job. | None |
list_fine_tuning_jobs
method, which provides a comprehensive list of all ongoing and completed fine-tuning jobs.
list_custom_models
, which retrieves a list of all models available for inference.
list_custom_models
method provides details on each model, including its ID, name, and deployment status, making it easy to identify and manage your deployed models.
Here’s how the documentation could look with an example on running forecasts using a custom model, incorporating both the list_custom_models
and get_model
methods for model retrieval.
list_custom_models
to select from all available models, orget_model
with a model name to retrieve a specific model directly.get_model
Name | Description | Default |
---|---|---|
model_name | The name of the model to retrieve. | Required |