Try the cheaper rungs first
There is a ladder here, and skipping to the top wastes both money and time.
- Prompt harder. If the model already knows the concept, rewriting words costs nothing.
- Give it a picture. A reference image, a structural map, or a first frame transfers appearance without touching a single weight.
- Train a LoRA. Small, cheap, an hour or less of compute, and reversible because it loads on top of any compatible base.
- Fine tune the whole model. Full DreamBooth or a checkpoint model rewrite. Expensive, slow, and worth it only when a LoRA has already been tried and fell short.
Most people who think they need training need step two. The honest test is whether a good reference image gets you 80 percent of the way, because if it does, the remaining 20 percent rarely justifies a training run.
What the words mean
Checkpoint model is the full set of weights, the multi gigabyte file people mean by a stable diffusion checkpoint. Fine tuning one produces another one.
DreamBooth is a method for teaching a specific subject with a rare token as its name, plus class images that stop the new knowledge from swallowing the general category.
Textual inversion learns an embedding rather than weights: a new word aimed at what the model can already do.
LoRA trains low rank adjustment matrices instead of the full weights, which is why it is small and stackable.
The dataset decides the outcome
Training is mostly a data problem, and the failures are predictable.
- Variety is the requirement. Same lighting in every shot and the model learns the lighting. Same background and it learns the background.
- Resolution and sharpness matter more than count. Soft or upscaled images teach softness.
- Caption consistently. Use one rare identifier for the subject and describe what varies, not what stays the same.
- Cut near duplicates. Consecutive video frames are effectively one image repeated, and repetition is how overfitting starts.
Reading an overfitted result
Overfitting looks like a subject that arrives correct but frozen. Same three quarter angle, same haircut lighting, a chunk of the training background reappearing, and the prompt unable to move any of it. Undertrained is the opposite: the subject only half resembles itself and the identifier behaves like an ordinary adjective.
Check both by generating at several checkpoints during training rather than judging only the last one. Fine tuning AI models is an experimental process, and the best epoch is frequently not the final epoch.