Datasets
Datasets are a core feature of Sulie, providing a centralized approach to manage time series data for forecasting and model fine-tuning at scale. You can make forecasts by directly passing apd.DataFrame
to Sulie’s SDK;
however, the Datasets feature enables more advanced management, including:
- Continuous data updates: Avoid manual handling of historical data.
- Team collaboration: Share and manage datasets across teams.
- Efficient forecasting: Streamline ad-hoc forecasting without reloading data.
Quick Tip: For simple forecasts or testing, you can directly pass a
pd.DataFrame
to the forecast
function.Uploading a Dataset
Uploading data to Sulie is straightforward. TheDataset
class offers a
familiar interface similar to a Pandas DataFrame, allowing you to use familiar
Pandas operations for easy data handling.
Parameters
The upload_dataset method accepts the following parameters:Name | Description | Type |
---|---|---|
name | A unique identifier for your dataset. | required |
df | The source data as a Pandas DataFrame or another Sulie Dataset. | required |
mode | Determines how new data is handled - append or overwrite to replace all data. | optional |