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.Documentation Index
Fetch the complete documentation index at: https://docs.woodwide.ai/llms.txt
Use this file to discover all available pages before exploring further.
Training
At training time, you must specify thelabel_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:
| Task | Metric | Description |
|---|---|---|
| Binary / multiclass classification | accuracy | Fraction of correct predictions on the holdout set. |
| Regression | r2 | R-squared (coefficient of determination) on the holdout set. |
GET /models/{model_id} in the current_metrics field, and on each model version via GET /models/{model_id}/versions.
Python
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.Python