Train Model
Create and train a new model.
Reference training data byDocumentation Index
Fetch the complete documentation index at: https://docs.woodwide.ai/llms.txt
Use this file to discover all available pages before exploring further.
dataset_id (uses the latest ready version) or by a specific dataset_version_id for reproducibility.
Poll GET /models/{model_id} until status becomes ready (or poll GET /jobs/{job_id} for more detail).
See Capabilities for details on each model type, required parameters, and training metrics. See Output Formats for output columns by model type.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Request to train a new model.
Reference training data by dataset_id (resolves to the latest
ready version automatically) or by dataset_version_id for
reproducibility. In most cases, just pass dataset_id.
Canonical model types supported by the platform.
prediction-- Supervised prediction (classification or regression) on a target column.anomaly-- Unsupervised anomaly detection. Returns anomaly scores and anomalous row IDs.embedding-- Generate dense vector embeddings for each row.clustering-- Unsupervised clustering. Returns cluster labels and descriptions.factors-- Factor analysis / dimensionality reduction.search-- Semantic nearest-neighbor search over the training dataset.
prediction, anomaly, embedding, clustering, factors, search Pin a specific dataset version. If omitted, the latest ready version is used.
Dataset to train on (uses latest ready version). Provide this OR dataset_version_id.
Target column for prediction models. Required for prediction, forbidden for other types.
Columns to use as features. If omitted, all columns except label are used.