Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
038ef09
Refactor `LTXConditionPipeline` to add text-only conditioning
tolgacangoz Mar 30, 2025
5f41f54
style
tolgacangoz Mar 30, 2025
8c14ffb
up
tolgacangoz Mar 30, 2025
7f2b8cd
Refactor `LTXConditionPipeline` to streamline condition handling and …
tolgacangoz Mar 30, 2025
b76c47e
Improve condition checks
tolgacangoz Mar 30, 2025
2e288ef
Simplify latents handling based on conditioning type
tolgacangoz Mar 30, 2025
149580e
Refactor rope_interpolation_scale preparation for clarity and efficiency
tolgacangoz Mar 30, 2025
ef03f6c
Update LTXConditionPipeline docstring to clarify supported input types
tolgacangoz Mar 30, 2025
a39a5ee
Add LTX Video 0.9.5 model to documentation
tolgacangoz Mar 30, 2025
f17dd3a
Clarify documentation to indicate support for text-only conditioning …
tolgacangoz Apr 1, 2025
4a67eca
Merge branch 'main' into make-LTX0.9.5-works-with-text-to-video
tolgacangoz Apr 1, 2025
c388ad7
Merge branch 'main' into make-LTX0.9.5-works-with-text-to-video
tolgacangoz Apr 1, 2025
4e5d4ab
Merge branch 'main' into make-LTX0.9.5-works-with-text-to-video
tolgacangoz Apr 3, 2025
8b27a68
refactor: comment out unused parameters in LTXConditionPipeline
tolgacangoz Apr 3, 2025
046af8e
fix: restore previously commented parameters in LTXConditionPipeline
tolgacangoz Apr 3, 2025
be98184
Merge branch 'main' into make-LTX0.9.5-works-with-text-to-video
tolgacangoz Apr 3, 2025
d78703a
fix: remove unused parameters from LTXConditionPipeline
tolgacangoz Apr 3, 2025
0599ff3
refactor: remove unnecessary lines in LTXConditionPipeline
tolgacangoz Apr 3, 2025
5ae1e54
Merge branch 'main' into make-LTX0.9.5-works-with-text-to-video
tolgacangoz Apr 3, 2025
a2d83a8
Merge branch 'make-LTX0.9.5-works-with-text-to-video' of github.com:t…
tolgacangoz Apr 3, 2025
fc9cfa8
Merge branch 'main' into make-LTX0.9.5-works-with-text-to-video
tolgacangoz Apr 3, 2025
9cb4a01
Merge branch 'main' into make-LTX0.9.5-works-with-text-to-video
tolgacangoz Apr 4, 2025
c2e15dc
Merge branch 'main' into make-LTX0.9.5-works-with-text-to-video
tolgacangoz Apr 4, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/en/api/pipelines/ltx_video.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Available models:
|:-------------:|:-----------------:|
| [`LTX Video 0.9.0`](https://huggingface.co/Lightricks/LTX-Video/blob/main/ltx-video-2b-v0.9.safetensors) | `torch.bfloat16` |
| [`LTX Video 0.9.1`](https://huggingface.co/Lightricks/LTX-Video/blob/main/ltx-video-2b-v0.9.1.safetensors) | `torch.bfloat16` |
| [`LTX Video 0.9.5`](https://huggingface.co/Lightricks/LTX-Video/blob/main/ltx-video-2b-v0.9.5.safetensors) | `torch.bfloat16` |

Note: The recommended dtype is for the transformer component. The VAE and text encoders can be either `torch.float32`, `torch.bfloat16` or `torch.float16` but the recommended dtype is `torch.bfloat16` as used in the original repository.

Expand Down
Loading
Loading