Skip to main content
Predict future values from past ones. The dataset is a single CSV where every row is one time step: a timestamp column, numeric feature columns and a numeric target. Rows must be in chronological order.

Folder layout

Data CSV

Categorical features (region, segment, …) must be encoded as integers before ingest: every non-timestamp column in schema must be numeric.

ingest.yaml

What the ingestor checks

Plus the checks every ingest runs. There is no label-diversity check.

Sample dataset

The template ships 31 daily rows starting 2023-10-01 with calendar features (day_of_week, month, day_of_month, week_of_year, is_weekend as INT), lag and moving-average features (lag_1, moving_avg_7 as FLOAT, blank until enough history exists) and the target value — the rows shown above are from it. The ingest.yaml above ingests it as is; only csv: changes to wherever you staged the file.

Next steps