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
showing 32GB for download - resetting download when complete
tried a number of ways through git, through direct download. I get a fatal error through power shell and when it downloads through a browser, it shows 32GB instead of 34GB and when it hits 32GB the download resets at 0 downloaded.
Not sure if you are having the same issue I've been facing. I have noticed that when I download a large file from sites like huggingface and civitai, the download will commence, complete, and then start over. It doesn't download 2 copies, it just starts the original download again. A web search suggested I use a downloader like Free Downloader Manager and that seems to be working so far. I just tested it on 10Eros_v1.2_fp8mixed_learned.safetensors (I think that is the file you are talking about) and it downloaded in one try.
If it matters I'm on Windows 11, using Chrome, and added the Free Download Manager extension to Chrome.
As to what was happening, the web search said it might be Windows Defender or Security trying to scan the file after downloading but something times out because the file is so large so it starts over. Not sure if that is what was happening to me but the downloader seems to fix the issue (so far). It was fairly annoying to watch everything get downloaded twice or fail.
I can't speak to the file sizes, but I imagine it is related to GB vs GiB or something like that. Huggingface lists 34.3 GB, it showed 32GB during download, Windows explorer lists file size as 31.9GB/34,328,894,254 bytes in properties. Essentially a different unit of measure. 1 GiB equals 1,073,741,824 bytes and 1 GB equals exactly 1,000,000,000 bytes. Like when you by a 10GB hard drive and it only shows 9.3GB or some such.
Anyway, hope you get it working. Best of luck.
Google chrome usually does this. Whatever it is it's nothing I can fix.
use FDM ( Free download manager)
HF has a CLI that works excellent.