CoolFace
Modelpublic

nachikethmurthy666/text-to-video-ms-1.7b

sourceHugging Facecreativeml-openrail-mupdated 1y agoView on Hugging Face
1likes9downloads
Model Card

๐Ÿš€ DAMO Text-to-Video MS-1.7B (Rehosted by Nachiketh)

This model is a rehosted and learner-accessible version of the original damo-vilab/text-to-video-ms-1.7b from Alibaba DAMO.

It enables text-to-video generation using diffusion models and is ideal for researchers, learners, and creators building cutting-edge Generative AI experiences.


๐Ÿ“Œ Model Summary

  • โ€”Name: DAMO Text-to-Video MS-1.7B
  • โ€”Architecture: Multi-stage latent diffusion
  • โ€”Inputs: Text prompt
  • โ€”Outputs: 16-frame videos (resolution varies)
  • โ€”Framework: Hugging Face ๐Ÿค— Diffusers
  • โ€”Precision: FP16 recommended
  • โ€”License: CreativeML OpenRAIL-M

๐Ÿงช Example Usage (Python)

Install the Libraries

$ pip install diffusers transformers accelerate torch
python
from diffusers import DiffusionPipeline
import torch
from diffusers.utils import export_to_video

pipe = DiffusionPipeline.from_pretrained(
    "nachikethmurthy666/text-to-video-ms-1.7b",
    torch_dtype=torch.float16,
    variant="fp16"
).to("cuda")

pipe.enable_model_cpu_offload()

prompt = "An astronaut riding a horse on Mars at sunset"
video = pipe(prompt, num_inference_steps=25).frames[0]
video_path = export_to_video(video)