Unsupervised learning trains from unlabeled data to discover structure, unlike supervised learning which learns from labeled targets.
Unsupervised learning is a machine learning paradigm where algorithms learn patterns from data without using classification or regression labels. In contrast to supervised learning—where training relies on labeled examples—unsupervised learning typically uses “in the wild” datasets that are cheaper to collect (e.g., large web text corpora) and focuses on discovering structure in the input itself. Unsupervised learning can be viewed through multiple aspects: the data (unlabeled), the training objective (learning to model or reconstruct patterns), the algorithmic approach (e.g., clustering, dimensionality reduction, latent-variable modeling), and the downstream uses (such as feature learning or anomaly detection). After deep learning’s rise, many large-scale unsupervised methods train general neural architectures with gradient descent, using carefully designed training procedures (often generative or reconstruction-based).
Unsupervised learning trains from unlabeled data to discover structure, unlike supervised learning which learns from labeled targets.
Common unsupervised tasks include clustering, anomaly detection, dimensionality reduction, and learning latent-variable models (e.g., via EM or tensor/moment methods).
Neural unsupervised training often uses reconstruction or probabilistic objectives (e.g., autoencoders, VAEs), and can be adapted for downstream tasks via fine-tuning or generative pretraining.
A machine learning framework where models learn patterns from unlabeled data without target labels.
A paradigm where models learn to predict labeled outputs (e.g., class labels or numeric targets) from input data.
An unsupervised method that groups data points with similar attributes into clusters.
Unsupervised techniques that compress data into fewer dimensions while preserving important structure (e.g., PCA).
A statistical model that includes unobserved (latent) variables alongside observed data, used to explain underlying structure.
An unsupervised neural network trained to reconstruct its input, learning useful internal representations.
A probabilistic autoencoder that learns a latent distribution and supports robust generative modeling via variational inference.
An iterative algorithm for estimating parameters of latent variable models, alternating between inferring latent variables and maximizing likelihood.
A statistical estimation approach that links unknown parameters to sample moments (e.g., means, covariances) to recover model parameters.
“Can you explain what "Unsupervised learning trains from unlabeled data to discover structure, unlike supervised learning which learns from labeled targets." means in simple terms?”