Views
No views yet
| Parameter | Value |
|---|---|
| Base model | LTX-Video 2.3 (22B) |
| Training framework | ltx-trainer (Lightricks) |
| Training strategy | IC-LoRA (video_to_video) |
| Best checkpoint | step 10,500 |
| LoRA rank / alpha | 32 / 32 |
| Target modules | attn1, attn2 (to_k/q/v/out), ff.net.0.proj, ff.net.2 |
| Learning rate | 1e-4 (linear decay) |
| Mixed precision | bf16 |
| Batch size | 1 (gradient checkpointing enabled) |
| Training dataset | 77 video pairs |
| Resolution buckets | 768x512x57; 768x512x89; 768x512x121 |
| First frame conditioning | 0.2 |
| Motion | Samples |
|---|---|
| zoom_in | 15 |
| zoom_out | 15 |
| tilt_up | 15 |
| tilt_down | 9 |
| pan_left | 15 |
| pan_right | 15 |
| orbit_cw | 15 |
| orbit_ccw | 15 |
1uv run python -m ltx_pipelines.ic_lora \
2 --distilled-checkpoint-path /path/to/ltx-2.3-22b-distilled.safetensors \
3 --spatial-upsampler-path /path/to/spatial_upsampler.safetensors \
4 --gemma-root /path/to/gemma \
5 --lora lora_weights_step_10500.safetensors 0.8 \
6 --video-conditioning /path/to/reference.mp4 1.0 \
7 --prompt "Your scene description here" \
8 --width 768 --height 512 --num-frames 97 \
9 --output-path output.mp4--video-conditioning: reference video carrying the camera motion to replicate, followed by conditioning strength--lora: path to this LoRA followed by strength (0.7–1.0 recommended)