Skip to main content
Factor analysis models discover the latent factors (principal components) that explain variance in your data and generate human-readable descriptions for each factor. Unlike other model types, the output has one row per factor, not per input instance.

Training

Training fits the model to your data, learning a representation that can be used to extract factors. No label_column is needed. No validation metrics are computed for factor models.

Inference

Run inference to discover factors in a dataset. The factors and their descriptions are generated based on the inference dataset, using the representation learned during training. This means you can run factor analysis on different datasets to understand their structure through the lens of the trained model. Running inference on the training data itself is the most common use case — it tells you what latent factors explain your training data. Running on new data reveals how those factors manifest in a different dataset. The number of factors is automatically determined to capture at least 90% of the variance (up to 10 factors).
See Output Formats for the full output schema.