Downloads · 30 days
0
pengxiang/trackdiffusion_ytvis
trackdiffusion_ytvis is a text-to-video model from pengxiang. Use it when you need video from a text prompt. It is set up for diffusers. The card lists the license as other.
TrackDiffusion is a diffusion model that takes in tracklets as conditions, and generates a video from it.
Downloads · 30 days
0
Access
Public
Updated Mar 29, 2024
Repo size
20.9 GB
Likes
2
Public
Click a slice to open those files.
.safetensors20.9 GB · 100%
From the Hugging Face model README
TrackDiffusion is a diffusion model that takes in tracklets as conditions, and generates a video from it.
TrackDiffusion is a novel video generation framework that enables fine-grained control over complex dynamics in video synthesis by conditioning the generation process on object trajectories. This approach allows for precise manipulation of object trajectories and interactions, addressing the challenges of managing appearance, disappearance, scale changes, and ensuring consistency across frames.
We provide the weights for the entire unet, so you can replace it in diffusers pipeline, for example:
pretrained_model_path = "stabilityai/stable-video-diffusion-img2vid"
unet = UNetSpatioTemporalConditionModel.from_pretrained("/path/to/unet", torch_dtype=torch.float16,)
pipe = StableVideoDiffusionPipeline.from_pretrained(
pretrained_model_path,
unet=unet,
torch_dtype=torch.float16,
variant="fp16",
low_cpu_mem_usage=True)