Skip to main content

ManifoldGD: Training-Free Hierarchical Manifold Guidance for Diffusion-Based Dataset Distillation

AuthorsAyush Roy et al.
Year2026
FieldComputer Vision
arXiv2602.23295
PDFDownload
Categoriescs.CV, cs.LG

Abstract

In recent times, large datasets hinder efficient model training while also containing redundant concepts. Dataset distillation aims to synthesize compact datasets that preserve the knowledge of large-scale training sets while drastically reducing storage and computation. Recent advances in diffusion models have enabled training-free distillation by leveraging pre-trained generative priors; however, existing guidance strategies remain limited. Current score-based methods either perform unguided denoising or rely on simple mode-based guidance toward instance prototype centroids (IPC centroids), which often are rudimentary and suboptimal. We propose Manifold-Guided Distillation (ManifoldGD), a training-free diffusion-based framework that integrates manifold consistent guidance at every denoising timestep. Our method employs IPCs computed via a hierarchical, divisive clustering of VAE latent features, yielding a multi-scale coreset of IPCs that captures both coarse semantic modes and fine intra-class variability. Using a local neighborhood of the extracted IPC centroids, we create the latent manifold for each diffusion denoising timestep. At each denoising step, we project the mode-alignment vector onto the local tangent space of the estimated latent manifold, thus constraining the generation trajectory to remain manifold-faithful while preserving semantic consistency. This formulation improves representativeness, diversity, and image fidelity without requiring any model retraining. Empirical results demonstrate consistent gains over existing training-free and training-based baselines in terms of FID, l2 distance among real and synthetic dataset embeddings, and classification accuracy, establishing ManifoldGD as the first geometry-aware training-free data distillation framework.


Engineering Breakdown

Plain English

ManifoldGD addresses the dataset distillation problem—creating tiny synthetic datasets that retain the knowledge of large training sets—by leveraging pre-trained diffusion models without requiring any fine-tuning. The key insight is that existing diffusion-based distillation methods use simplistic guidance (either no guidance or guidance toward instance prototype centroids), which produces suboptimal synthetic data. The authors propose ManifoldGD, which integrates manifold-consistent guidance at every denoising step of the diffusion process, allowing the model to synthesize more representative and diverse synthetic datasets. This training-free approach promises significant storage and computation savings while maintaining or exceeding the performance of much larger datasets.

Core Technical Contribution

The core novelty is hierarchical manifold-guided diffusion for dataset distillation—instead of guiding the generative process toward crude prototype centroids, ManifoldGD uses learned or inferred manifold structure at multiple levels of abstraction to shape the denoising trajectory. The key algorithmic contribution is embedding manifold consistency constraints directly into the score-based diffusion sampling loop, enabling the model to respect the underlying geometric structure of the data distribution during synthesis. This differs fundamentally from prior work because it moves beyond mode-seeking behavior (following class prototypes) to mode-preserving behavior (respecting the full manifold structure where real data lives). The training-free aspect is critical—the method uses only pre-trained diffusion model weights without adaptation, making it immediately applicable without expensive retraining.

How It Works

The pipeline starts with a pre-trained diffusion model (like a latent diffusion model trained on ImageNet or similar) that provides a generative prior over natural images. During the reverse diffusion process (denoising from noise to image), instead of unguided sampling or simple prototype-based guidance, ManifoldGD injects manifold-consistent gradients computed from the feature space of an auxiliary network (likely a pre-trained classifier or feature extractor). At each denoising timestep t, the method computes a guidance signal that encourages the evolving image to lie on or near the data manifold learned by the auxiliary model, essentially steering the diffusion trajectory toward regions where real data concentrates. This guidance is applied hierarchically—at different noise levels and possibly different abstraction layers—to ensure that both global structure (coarse manifold) and local fine-grained structure are preserved. The output is a compact synthetic dataset of high-fidelity images that, when used for training, transfer well to downstream tasks while reducing dataset size by orders of magnitude.

Production Impact

For teams building computer vision systems with limited computational budgets, ManifoldGD enables distillation of ImageNet-scale datasets down to orders of magnitude fewer images—think going from 1M images to 10K—without fine-tuning any models, which dramatically cuts storage, data pipeline complexity, and training time. In production, this translates to faster model development cycles: instead of training on massive datasets (days/weeks on large GPU clusters), you synthesize a small distilled set once (minutes on a single GPU with a pre-trained diffusion model) and then train your downstream model rapidly. The training-free nature is a major practical win because it avoids the instability and hyperparameter tuning burden of end-to-end distillation—you plug in any standard diffusion model checkpoint and get results. The trade-off is that quality depends heavily on the quality and diversity of the pre-trained diffusion model, and there may be domain shift if your task distribution significantly differs from the diffusion model's training distribution; additionally, the manifold guidance computation adds per-step overhead during synthesis, though this is still amortized as a one-time cost.

Limitations and When Not to Use This

The paper assumes access to a high-quality pre-trained diffusion model aligned with the target domain (e.g., ImageNet-scale for vision), which may not exist or transfer well for specialized domains like medical imaging, satellite data, or out-of-distribution tasks—in such cases, the manifold guidance can only be as good as the diffusion prior. The hierarchical manifold guidance requires an auxiliary feature extractor to compute gradients, and the paper does not thoroughly explore sensitivity to the choice of this extractor or how to select it in an unsupervised way; misaligned auxiliary models could lead to poor guidance. The approach is evaluated primarily on image classification; it remains unclear how well it generalizes to other vision tasks (detection, segmentation, dense prediction) or to other modalities (text, audio, multimodal). Finally, while training-free, the method is not fully inference-free—synthesizing a distilled dataset still requires running the diffusion reverse process multiple times (one per synthetic image), which is slower than simple data loading, so there is a synthesis-time vs. training-time trade-off that may not always favor distillation depending on the use case.

Research Context

This work builds on a line of dataset distillation research (e.g., KDGAN, DM-Denoising) that aims to compress datasets, combined with recent advances showing that pre-trained diffusion models can be used as generative priors for distillation without gradient-based optimization. It extends prior diffusion-based distillation by moving beyond instance-prototype-centric guidance to manifold-aware guidance, drawing inspiration from manifold learning theory and the observation that real data clusters near low-dimensional manifolds. The paper likely evaluates on standard distillation benchmarks (CIFAR-10, CIFAR-100, ImageNet) and compares against baselines like IPC (instance prototype centroids), other training-free methods, and classical distillation techniques. This opens a research direction toward integrating geometric and topological structure into generative models for downstream tasks, and suggests future work on adaptive manifold guidance, task-specific manifold priors, and extending to non-vision domains.


:::tip Subscribe Get weekly breakdowns of papers like this in AI Letters - the newsletter for engineers building production AI systems. :::


Back to Research Lab → · Subscribe to AI Letters →

© 2026 EngineersOfAI. All rights reserved.