vantagewithai commited on
Commit
ff4ac86
·
verified ·
1 Parent(s): 93029b1

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +138 -0
README.md ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - de
5
+ - es
6
+ - fr
7
+ - ja
8
+ - ko
9
+ - zh
10
+ - it
11
+ - pt
12
+ library_name: diffusers
13
+ license: other
14
+ license_name: ltx-2-community-license-agreement
15
+ license_link: https://github.com/Lightricks/LTX-2/blob/main/LICENSE
16
+ pipeline_tag: image-to-video
17
+ arxiv: 2601.03233
18
+ tags:
19
+ - image-to-video
20
+ - text-to-video
21
+ - video-to-video
22
+ - image-text-to-video
23
+ - audio-to-video
24
+ - text-to-audio
25
+ - video-to-audio
26
+ - audio-to-audio
27
+ - text-to-audio-video
28
+ - image-to-audio-video
29
+ - image-text-to-audio-video
30
+ - ltx-2
31
+ - ltx-2-3
32
+ - ltx-video
33
+ - ltxv
34
+ - lightricks
35
+ pinned: true
36
+ demo: https://app.ltx.studio/ltx-2-playground/i2v
37
+ ---
38
+
39
+ **Split version of Split LTX-2.3 checkpoint - Model/VAE/Audio VAE/Text Encoder**
40
+
41
+ **Original model Link:** [https://huggingface.co/Lightricks/LTX-2.3](https://huggingface.co/Lightricks/LTX-2)
42
+
43
+ **Watch us at Youtube:** [@VantageWithAI](https://www.youtube.com/@vantagewithai)
44
+
45
+ # LTX-2.3 Model Card
46
+
47
+ This model card focuses on the LTX-2.3 model, which is a significant update to the [LTX-2 model](https://huggingface.co/Lightricks/LTX-2) with improved audio and visual quality as well as enhanced prompt adherence.
48
+ LTX-2 was presented in the paper [LTX-2: Efficient Joint Audio-Visual Foundation Model](https://huggingface.co/papers/2601.03233).
49
+
50
+ 💻💻 **If you want to dive in right to the code - it is available [here](https://github.com/Lightricks/LTX-2).** 💾💾
51
+
52
+ LTX-2.3 is a DiT-based audio-video foundation model designed to generate synchronized video and audio within a single model. It brings together the core building blocks of modern video generation, with open weights and a focus on practical, local execution.
53
+
54
+ [![LTX-2 Open Source](https://huggingface.co/Lightricks/LTX-2.3/resolve/main/ltx2.3-open.png)](https://youtu.be/o-7us-BR_gQ)
55
+
56
+ # Model Checkpoints
57
+
58
+ | Name | Notes |
59
+ |------------------------------------|--------------------------------------------------------------------------------------------------------------------|
60
+ | ltx-2.3-22b-dev | The full model, flexible and trainable in bf16 |
61
+ | ltx-2.3-22b-distilled | The distilled version of the full model, 8 steps, CFG=1 |
62
+ | ltx-2.3-22b-distilled-lora-384 | A LoRA version of the distilled model applicable to the full model |
63
+ | ltx-2.3-spatial-upscaler-x2-1.0 | An x2 spatial upscaler for the ltx-2.3 latents, used in multi stage (multiscale) pipelines for higher resolution |
64
+ | ltx-2.3-spatial-upscaler-x1.5-1.0 | An x1.5 spatial upscaler for the ltx-2.3 latents, used in multi stage (multiscale) pipelines for higher resolution |
65
+ | ltx-2.3-temporal-upscaler-x2-1.0 | An x2 temporal upscaler for the ltx-2.3 latents, used in multi stage (multiscale) pipelines for higher FPS |
66
+
67
+ ## Model Details
68
+ - **Developed by:** Lightricks
69
+ - **Model type:** Diffusion-based audio-video foundation model
70
+ - **Language(s):** English
71
+
72
+ # Online demo
73
+ LTX-2.3 is accessible right away via the [API Playground](https://console.ltx.video/playground/).
74
+
75
+ # Run locally
76
+
77
+ ## Direct use license
78
+ You can use the models - full, distilled, upscalers and any derivatives of the models - for purposes under the [license](./LICENSE).
79
+
80
+ ## ComfyUI
81
+ We recommend you use the built-in LTXVideo nodes that can be found in the ComfyUI Manager.
82
+ For manual installation information, please refer to our [documentation site](https://docs.ltx.video/open-source-model/integration-tools/comfy-ui).
83
+
84
+ ## PyTorch codebase
85
+
86
+ The [LTX-2 codebase](https://github.com/Lightricks/LTX-2) is a monorepo with several packages. From model definition in 'ltx-core' to pipelines in 'ltx-pipelines' and training capabilities in 'ltx-trainer'.
87
+ The codebase was tested with Python >=3.12, CUDA version >12.7, and supports PyTorch ~= 2.7.
88
+
89
+ ### Installation
90
+
91
+ ```bash
92
+ git clone https://github.com/Lightricks/LTX-2.git
93
+ cd LTX-2
94
+
95
+ # From the repository root
96
+ uv sync
97
+ source .venv/bin/activate
98
+ ```
99
+
100
+ ### Inference
101
+
102
+ To use our model, please follow the instructions in our [ltx-pipelines](https://github.com/Lightricks/LTX-2/blob/main/packages/ltx-pipelines/README.md) package.
103
+
104
+ ## Diffusers 🧨
105
+
106
+ LTX-2.3 support in the [Diffusers Python library](https://huggingface.co/docs/diffusers/main/en/index) is coming soon!
107
+
108
+ ## General tips:
109
+ * Width & height settings must be divisible by 32. Frame count must be divisible by 8 + 1.
110
+ * In case the resolution or number of frames are not divisible by 32 or 8 + 1, the input should be padded with -1 and then cropped to the desired resolution and number of frames.
111
+ * For tips on writing effective prompts, please visit our [Prompting guide](https://ltx.video/blog/how-to-prompt-for-ltx-2)
112
+
113
+ ### Limitations
114
+ - This model is not intended or able to provide factual information.
115
+ - As a statistical model this checkpoint might amplify existing societal biases.
116
+ - The model may fail to generate videos that matches the prompts perfectly.
117
+ - Prompt following is heavily influenced by the prompting-style.
118
+ - The model may generate content that is inappropriate or offensive.
119
+ - When generating audio without speech, the audio may be of lower quality.
120
+
121
+ # Train the model
122
+
123
+ The base (dev) model is fully trainable.
124
+
125
+ It's extremely easy to reproduce the LoRAs and IC-LoRAs we publish with the model by following the instructions on the [LTX-2 Trainer Readme](https://github.com/Lightricks/LTX-2/blob/main/packages/ltx-trainer/README.md).
126
+
127
+ Training for motion, style or likeness (sound+appearance) can take less than an hour in many settings.
128
+
129
+ ## Citation
130
+
131
+ ```bibtex
132
+ @article{hacohen2025ltx2,
133
+ title={LTX-2: Efficient Joint Audio-Visual Foundation Model},
134
+ author={HaCohen, Yoav and Brazowski, Benny and Chiprut, Nisan and Bitterman, Yaki and Kvochko, Andrew and Berkowitz, Avishai and Shalem, Daniel and Lifschitz, Daphna and Moshe, Dudu and Porat, Eitan and Richardson, Eitan and Guy Shiran and Itay Chachy and Jonathan Chetboun and Michael Finkelson and Michael Kupchick and Nir Zabari and Nitzan Guetta and Noa Kotler and Ofir Bibi and Ori Gordon and Poriya Panet and Roi Benita and Shahar Armon and Victor Kulikov and Yaron Inger and Yonatan Shiftan and Zeev Melumian and Zeev Farbman},
135
+ journal={arXiv preprint arXiv:2601.03233},
136
+ year={2025}
137
+ }
138
+ ```