Skip to main content
Prediction models learn to predict a target column from the remaining columns in your dataset. Wood Wide AI automatically detects whether the task is binary classification, multiclass classification, or regression based on the target column’s values.

Training

At training time, you must specify the label_column — the column to be predicted. All other columns (or those specified via input_columns) are used as input features. A portion of the training data is automatically held out for validation. After training, validation metrics are reported on this holdout set: These metrics are available on the model object via GET /models/{model_id} in the current_metrics field, and on each model version via GET /models/{model_id}/versions.

Inference

At inference time, provide a CSV with the same input columns as the training data. The target column need not be present — if it is, it will be ignored. The model predicts the target column for each row.
See Output Formats for the full output schema.