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
Where can I get LatentTemporalInpainter and LatentMotionSharpener nodes
#2
by astrum7 - opened
Hi! When I try to run the workflow, I get the following error:
This workflow uses custom nodes you haven't installed yet.
Installation Required
LatentTemporalInpainter
LatentMotionSharpener
I cannot find these nodes through Custom Nodes Manger. I tried looking them up myself and couldn't find the nodepack either.
astrum7 changed discussion status to closed
astrum7 changed discussion title from Where can I install LatentTemporalInpainter and LatentMotionSharpener? to Where can I fet LatentTemporalInpainter and LatentMotionSharpener nodes
astrum7 changed discussion title from Where can I fet LatentTemporalInpainter and LatentMotionSharpener nodes to Where can I get LatentTemporalInpainter and LatentMotionSharpener nodes