Skip to content

Commit e29ca10

Browse files
authored
Merge pull request #220 from Lightricks/feature/readme-release-ic-loras
Readme: Add official Control Models
2 parents d63732d + 71d4b5f commit e29ca10

File tree

6 files changed

+51
-9
lines changed

6 files changed

+51
-9
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 36 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
# LTX-Video
44

5-
This is the official repository for LTX-Video.
5+
[![Website](https://img.shields.io/badge/Website-LTXV-181717?logo=google-chrome)](https://www.lightricks.com/ltxv)
6+
[![Model](https://img.shields.io/badge/HuggingFace-Model-orange?logo=huggingface)](https://huggingface.co/Lightricks/LTX-Video)
7+
[![Demo](https://img.shields.io/badge/Demo-Try%20Now-brightgreen?logo=vercel)](https://app.ltx.studio/motion-workspace?videoModel=ltxv-13b)
8+
[![Paper](https://img.shields.io/badge/Paper-arXiv-B31B1B?logo=arxiv)](https://arxiv.org/abs/2501.00103)
9+
[![Trainer](https://img.shields.io/badge/LTXV-Trainer-9146FF?logo=github)](https://github.com/Lightricks/LTX-Video-Trainer)
10+
[![Discord](https://img.shields.io/badge/Join-Discord-5865F2?logo=discord)](https://discord.gg/Mn8BRgUKKy)
611

7-
[Website](https://www.lightricks.com/ltxv) |
8-
[Model](https://huggingface.co/Lightricks/LTX-Video) |
9-
[Demo](https://app.ltx.studio/motion-workspace?videoModel=ltxv-13b) |
10-
[Paper](https://arxiv.org/abs/2501.00103) |
11-
[Trainer](https://github.com/Lightricks/LTX-Video-Trainer) |
12-
[Discord](https://discord.gg/Mn8BRgUKKy)
12+
This is the official repository for LTX-Video.
1313

1414
</div>
1515

@@ -28,6 +28,7 @@ This is the official repository for LTX-Video.
2828
- [Model User Guide](#model-user-guide)
2929
- [Community Contribution](#community-contribution)
3030
- [Training](#training)
31+
- [Control Models](#control-models)
3132
- [Join Us!](#join-us-)
3233
- [Acknowledgement](#acknowledgement)
3334

@@ -47,8 +48,24 @@ The model supports image-to-video, keyframe-based animation, video extension (bo
4748
| ![example4](./docs/_static/ltx-video_i2v_example_00004.gif) | ![example5](./docs/_static/ltx-video_i2v_example_00005.gif) | ![example6](./docs/_static/ltx-video_i2v_example_00006.gif) |
4849
| ![example7](./docs/_static/ltx-video_i2v_example_00007.gif) | ![example8](./docs/_static/ltx-video_i2v_example_00008.gif) | ![example9](./docs/_static/ltx-video_i2v_example_00009.gif) |
4950

51+
### Controlled video examples
52+
| | | |
53+
|:---:|:---:|:---:|
54+
| ![control0](./docs/_static/ltx-video_ic_2v_example_00000.gif) | ![control1](./docs/_static/ltx-video_ic_2v_example_00001.gif) | ![control2](./docs/_static/ltx-video_ic_2v_example_00002.gif) |
55+
56+
| | |
57+
|:---:|:---:|
58+
| ![control3](./docs/_static/ltx-video_ic_2v_example_00003.gif) | ![control4](./docs/_static/ltx-video_ic_2v_example_00004.gif) |
59+
5060
# News
5161

62+
## July, 8th, 2025: New Control Models Released!
63+
- Released three new control models for LTX-Video on HuggingFace:
64+
* **Depth Control**: [LTX-Video-ICLoRA-depth-13b-0.9.7](https://huggingface.co/Lightricks/LTX-Video-ICLoRA-depth-13b-0.9.7)
65+
* **Pose Control**: [LTX-Video-ICLoRA-pose-13b-0.9.7](https://huggingface.co/Lightricks/LTX-Video-ICLoRA-pose-13b-0.9.7)
66+
* **Canny Control**: [LTX-Video-ICLoRA-canny-13b-0.9.7](https://huggingface.co/Lightricks/LTX-Video-ICLoRA-canny-13b-0.9.7)
67+
68+
5269
## May, 14th, 2025: New distilled model 13B v0.9.7:
5370
- Release a new 13B distilled model [ltxv-13b-0.9.7-distilled](https://huggingface.co/Lightricks/LTX-Video/blob/main/ltxv-13b-0.9.7-distilled.safetensors)
5471
* Amazing for iterative work - generates HD videos in 10 seconds, with low-res preview after just 3 seconds (on H100)!
@@ -162,7 +179,7 @@ python -m pip install -e \[inference\]
162179

163180
### Inference
164181

165-
πŸ“ **Note:** For best results, we recommend using our [ComfyUI](#comfyui-integration) workflow. We’re working on updating the inference.py script to match the high quality and output fidelity of ComfyUI.
182+
πŸ“ **Note:** For best results, we recommend using our [ComfyUI](#comfyui-integration) workflow. We're working on updating the inference.py script to match the high quality and output fidelity of ComfyUI.
166183

167184
To use our model, please follow the inference code in [inference.py](./inference.py):
168185

@@ -290,11 +307,21 @@ please let us know by opening an issue or pull request.
290307
# ⚑️ Training
291308

292309
We provide an open-source repository for fine-tuning the LTX-Video model: [LTX-Video-Trainer](https://github.com/Lightricks/LTX-Video-Trainer).
293-
This repository supports both the 2B and 13B model variants, enabling full fine-tuning as well as LoRA (Low-Rank Adaptation) fine-tuning for more efficient training.
310+
This repository supports both the 2B and 13B model variants, enabling full fine-tuning as well as LoRA (Low-Rank Adaptation) fine-tuning for more efficient training. This includes:
311+
312+
- **Control LoRAs**: Train custom control models like depth, pose, and canny control
313+
- **Effect LoRAs**: Create specialized effects and transformations for video generation
294314

295315
Explore the repository to customize the model for your specific use cases!
296316
More information and training instructions can be found in the [README](https://github.com/Lightricks/LTX-Video-Trainer/blob/main/README.md).
297317

318+
# 🎬 Control Models
319+
320+
[ComfyUI-LTXVideo](https://github.com/Lightricks/ComfyUI-LTXVideo) repository now contains workflows and models for 3 specialized models that enable precise control over LTX-Video generation:
321+
322+
Pose Control, Depth Control and Canny Control
323+
324+
**Example ComfyUI Workflow (for all control types):** [ic-lora.json](https://github.com/Lightricks/ComfyUI-LTXVideo/blob/main/example_workflows/ic_lora/ic-lora.json)
298325

299326
# πŸš€ Join Us
300327

Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
Β (0)