Skip to main content
Predict a class from table columns. The dataset is a single CSV with a header row: feature columns plus one class column. There are no per-sample files.

Folder layout

  • One CSV, UTF-8, comma-separated, with a header row.
  • Every column has one consistent type. Feature columns are typically numeric; the class column may be text or integer codes.

Data CSV

In schema columns, empty cells and exactly the tokens NA, N/A, n/a, NULL, null, None, none, NaN, nan, <NA>, #N/A (case-sensitive) are stored as NULL.

ingest.yaml

What the ingestor checks

Plus the checks every ingest runs.

Sample dataset

The template ships a synthetic CSV with id, three FLOAT features (feature_00, feature_01, feature_02) and a binary label column — the rows shown above are its first rows. The ingest.yaml above ingests it as is; only csv: changes to wherever you staged the file.

Next steps