| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-08-21 | 4.2 kB | |
| v4.8.0 - InfiniteTalk, training metrics UI, new distillers and representation learning methods source code.tar.gz | 2026-08-21 | 17.6 MB | |
| v4.8.0 - InfiniteTalk, training metrics UI, new distillers and representation learning methods source code.zip | 2026-08-21 | 20.0 MB | |
| Totals: 3 Items | 37.6 MB | 1 | |
Features
- InfiniteTalk now supported with VRAM-vs-Performance tuned example configurations provided
- Cubic spline distribution for flow-matching timesteps
- Built-in tensorboard / W&B replacement with Prometheus exporter and webUI components (Metrics page)
- iREPA spatial representation alignment with a training-only module added to capture this information
- Self-Transcendence distillation, which doesn't reduce step count or bake in CFG, but instead teaches earlier layers in the model things that tend to be learnt by the later layers instead, possibly reducing redundancy and making inner layers "less redundant"
- Internal guidance training, similar to Self Transcendence except its module is used at inference time; it can bake CFG into the finetune, but requires inference code tweaks to be useful
- MixFlow, which is comparable to SimpleTuner's own ReflexFlow implementation, aims to reduce exposure bias in flow matching models by teaching them to correct errors they've made earlier in their trajectory without changing inference code requirements or slowing training down (wall clock per step)
- DiffusinonBlocks totally changes the training objective for a model to reorganise its internals into specialised denoising experts; inference time absolutely needs the same changes AND routing config to be enabled
Bugfixes
audio_onlyis automatically enabled foraudiodatasets on video models- Multi-caption inputs no longer clobber other text embeds' cache on keyed cache models (eg. image/video models that embed the image/video into the text embeds; Qwen Edit, Krea2 edit, and other similar edit models)
- MultiGPU context-parallel DDP batches are generated deterministically to ensure the batch always shared correctly
- Audio VAEs now function with
vae_batch_size>1without crashing - Live dataset config is now authoritative, emitting a better error when changing immutable properties (not allowed to be changed mid-training / during resume)
- H3 context-parallel and audio validation have minor fixes
What's Changed
- automatically enable audio_only when only audio given by @bghira in https://github.com/bghira/SimpleTuner/pull/3114
- Fix multiline filename-keyed text caches by @bghira in https://github.com/bghira/SimpleTuner/pull/3115
- Test joint AV media extraction priority by @bghira in https://github.com/bghira/SimpleTuner/pull/3118
- Batch variable-duration audio VAE caching by @bghira in https://github.com/bghira/SimpleTuner/pull/3119
- Fix H3 context-parallel attention fallback by @bghira in https://github.com/bghira/SimpleTuner/pull/3116
- Fix H3 audio validation target mode by @bghira in https://github.com/bghira/SimpleTuner/pull/3117
- Keep live dataset runtime config authoritative by @bghira in https://github.com/bghira/SimpleTuner/pull/3120
- Make DDP dataset selection deterministic by @bghira in https://github.com/bghira/SimpleTuner/pull/3121
- Add iREPA spatial representation alignment by @bghira in https://github.com/bghira/SimpleTuner/pull/3123
- Add cubic spline flow timestep sampling by @bghira in https://github.com/bghira/SimpleTuner/pull/3125
- Add built-in local training metrics dashboard by @bghira in https://github.com/bghira/SimpleTuner/pull/3127
- feat: add InfiniteTalk training support by @bghira in https://github.com/bghira/SimpleTuner/pull/3128
- Add Self-Transcendence distillation by @bghira in https://github.com/bghira/SimpleTuner/pull/3124
- Add Internal Guidance training by @bghira in https://github.com/bghira/SimpleTuner/pull/3126
- feat: add MixFlow post-training support by @bghira in https://github.com/bghira/SimpleTuner/pull/3129
- Add DiffusionBlocks training support by @bghira in https://github.com/bghira/SimpleTuner/pull/3130
- Remove the orphaned MiniMax Music 3 RVQ precompute script by @aidiffuser in https://github.com/bghira/SimpleTuner/pull/3131
- merge by @bghira in https://github.com/bghira/SimpleTuner/pull/3132
New Contributors
- @aidiffuser made their first contribution in https://github.com/bghira/SimpleTuner/pull/3131
Full Changelog: https://github.com/bghira/SimpleTuner/compare/v4.7.1...v4.8.0