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.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
Training fits the model to your data, learning a representation that can be used to extract factors. Nolabel_column is needed. No validation metrics are computed for factor models.
Python
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).Python