File size: 919 Bytes
58cf421 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | # LTX2 Distilled Refine LoRA
This repo contains the distilled LoRA used for LTX-2 two-stage refinement.
FastVideo loads it only when `ltx2_refine_enabled=True` (or the equivalent refine
flags). The base model repo can reference this LoRA via
`fastvideo_refine_lora_path` in `model_index.json`, so users do not need to pass
the LoRA path manually.
## Contents
- `ltx-2-19b-distilled-lora-384.safetensors` — distilled LoRA weights for the
stage-2 refine denoising pass.
## Usage (FastVideo)
Use a distilled LTX-2 diffusers repo that includes
`fastvideo_refine_lora_path="FastVideo/LTX2-Distilled-LoRA"` in its
`model_index.json`. Then enable refinement:
```python
from fastvideo import VideoGenerator
generator = VideoGenerator.from_pretrained(
"FastVideo/LTX2-Distilled-Diffusers",
ltx2_refine_enabled=True,
)
```
FastVideo will download this LoRA repo automatically only when refinement is
enabled.
|