| name | alchemist-meta-gradient-selection |
| title | Alchemist: Meta-Gradient-Based Automatic Data Selection for Text-to-Image Model Training |
| version | 0.0.2 |
| engine | skillxiv-v0.0.2-claude-opus-4.6 |
| license | MIT |
| url | https://arxiv.org/abs/2512.16905 |
| keywords | ["data-selection","meta-learning","text-to-image","training-efficiency","data-pruning"] |
| description | Select optimal training subsets for T2I models through meta-gradient-based rater networks. Score each sample based on gradient influence on validation performance without retraining. Implement shift-Gaussian pruning excluding high-scoring samples. Achieve 5× training speedup with 50% subset outperforming full dataset. |
Skill Summary
Alchemist introduces the first meta-gradient-based automatic data selection framework for text-to-image model training. A lightweight rater network scores each training sample based on gradient influence on validation performance, using bilevel optimization without expensive model retraining. Multi-granularity perception combines instance-level and batch-level features through Group MLP. Shift-Gaussian pruning strategically excludes highest-scoring samples (typically simple/uninformative) and performs Gaussian sampling from middle-to-late score regions where samples balance learnability and informativeness. Training on Alchemist-selected 50% subset outperforms training on full dataset with up to 5× training speedup.
When To Use
- Accelerating T2I model training with limited data budgets
- Scenarios where data quality varies significantly
- Projects where computational efficiency is critical
- Research on optimal data selection for generative models
When NOT To Use
- Domains with limited training data (selection requires reasonable dataset size)
- Scenarios where all training data is known to be high-quality
- Applications where training speed isn't bottleneck
- Models already achieving target performance with full data
Core Technique
Three key innovations enable efficient data selection:
1. Meta-Gradient-Based Rating
Train lightweight rater network to score each training sample based on gradient influence. Uses bilevel optimization to estimate "each sample's influence" on validation performance without retraining the model repeatedly. Much cheaper than traditional influence estimation.
2. Multi-Granularity Perception
Rater incorporates both instance-level and batch-level features through Group MLP module, capturing:
- Individual sample quality
- Contextual batch characteristics
This combined view provides richer quality signals than instance-only scoring.
3. Shift-Gaussian Pruning Strategy
Rather than selecting top-rated samples (which tend to be simple/uninformative), strategically exclude highest-scoring samples and perform Gaussian sampling from middle-to-late score regions where samples balance:
- Learnability: samples that improve model
- Informativeness: samples that add new knowledge
Results
- 50% subset selected via Alchemist outperforms full dataset
- 5× faster training achievable
- Comparable performance to random selection on larger datasets
- Validated on T2I models
Implementation Notes
Train lightweight rater network with bilevel optimization estimating sample influence. Implement Group MLP for multi-granularity features. Score all training samples. Perform shift-Gaussian sampling from middle-to-late score distribution. Train model on selected subset. Monitor performance compared to baseline.