Exploring Diffusion Transformer Designs Via Grafting
Source
Liquid AI editorial sitemap
Author
Liquid AI editorial sitemap
Date
Terms in this piece · Glossary
pretraining — The first, biggest phase of building a model: training it on enormous amounts of text so it learns language, facts, and reasoning in general.
fine-tuning — Taking a trained model and training it a bit more on your own examples so it gets better at one specific job.
distillation — Training a small, cheap model to imitate a big one's outputs, keeping much of the capability at a fraction of the cost.
attention — The mechanism that lets a model weigh which earlier words matter for the word it's currently processing — the core operation of a transformer.
Why it matters
Architecture ideas can be tested by editing a pretrained model instead of pretrainingThe first, biggest phase of building a model: training it on enormous amounts of text so it learns language, facts, and reasoning in general.Full definition → from scratch. Activation distillationTraining a small, cheap model to imitate a big one's outputs, keeping much of the capability at a fraction of the cost.Full definition → combined with short fine-tuningTaking a trained model and training it a bit more on your own examples so it gets better at one specific job.Full definition → can swap attentionThe mechanism that lets a model weigh which earlier words matter for the word it's currently processing — the core operation of a transformer.Full definition → for convolution or linear attention while holding quality.