Instructions to use TenStrip/LTX2.3-10Eros with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use TenStrip/LTX2.3-10Eros with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image, export_to_video # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("TenStrip/LTX2.3-10Eros", dtype=torch.bfloat16, device_map="cuda") pipe.to("cuda") prompt = "A man with short gray hair plays a red electric guitar." image = load_image( "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/guitar-man.png" ) output = pipe(image=image, prompt=prompt).frames[0] export_to_video(output, "output.mp4") - Notebooks
- Google Colab
- Kaggle
Question About “Tuned Connector Data” and Face Drift Reduction
Thanks for the great work!
I'm curious about what exactly is meant by the following statement:
"Leveraged tuned connector data to reduce face drift and aid long prompts/director."
Does this mean you specifically tuned the Embeddings1DConnector (or another cross-modal connector component) to achieve better facial consistency and reduce face drift?
I find this particularly interesting because I would normally expect improvements in face consistency to come from the diffusion model, transformer, or training data itself. If tuning the cross-modal connector can noticeably improve visual quality, identity preservation, and prompt adherence over long generations, that seems like a very promising direction.
Could you elaborate on what "tuned connector data" refers to and how it contributes to reducing face drift and improving long-prompt/director performance?