Skip to main content
Embedding models produce a dense vector representation for each row in your data. These vectors capture the semantic structure of your tabular data and can be used for downstream tasks such as similarity search, clustering, or visualization.

Training

Training fits an embedding model to your dataset. No label_column is needed. No validation metrics are computed for embedding models.

Inference

Run inference to generate embeddings. You can embed the training data or new data. The model will produce embeddings that are consistent with the representation learned during training.
See Output Formats for the full output schema.