Instructions to use Motif-Technologies/Motif-Video-2B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Motif-Technologies/Motif-Video-2B with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Motif-Technologies/Motif-Video-2B", dtype=torch.bfloat16, device_map="cuda") prompt = "A vibrant blue jay perches gracefully on a slender branch, its feathers shimmering in the soft morning light. The bird's keen eyes scan the surroundings, capturing the essence of the tranquil forest. It flutters its wings briefly, showcasing the intricate patterns of blue, white, and black on its plumage. The background reveals a lush canopy of green leaves, with rays of sunlight filtering through, creating a dappled effect on the forest floor. The blue jay then tilts its head, emitting a melodious call that echoes through the serene woodland, adding a touch of magic to the peaceful scene." image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
docs: add ComfyUI release to News + update ComfyUI section
Browse files- News: ComfyUI-MotifVideo2B released, GGUF workflow coming soon
- ComfyUI section: repo link, High VRAM required note, GGUF in progress
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
README.md
CHANGED
|
@@ -64,6 +64,7 @@ widget:
|
|
| 64 |
|
| 65 |
## 🔥 News
|
| 66 |
|
|
|
|
| 67 |
- **[2026-04-28]** **GGUF quantized weights** now available at [Motif-Video-2B-GGUF](https://huggingface.co/Motif-Technologies/Motif-Video-2B-GGUF) — up to 2.7 GB VRAM savings with no speed penalty. **SageAttention** support for ~2× faster inference. See [GGUF + SageAttention](#🧊-gguf--sageattention) below.
|
| 68 |
- **[2026-04-14]** We release **Motif-Video 2B**, our 2B-parameter text-to-video and image-to-video diffusion transformer, together with the full [technical report](https://arxiv.org/abs/2604.16503).
|
| 69 |
|
|
@@ -385,7 +386,9 @@ This stores the transformer weights in FP8 (8-bit) instead of BF16 (16-bit), red
|
|
| 385 |
|
| 386 |
### 🖥️ ComfyUI
|
| 387 |
|
| 388 |
-
Official ComfyUI custom nodes
|
|
|
|
|
|
|
| 389 |
|
| 390 |
---
|
| 391 |
|
|
|
|
| 64 |
|
| 65 |
## 🔥 News
|
| 66 |
|
| 67 |
+
- **[2026-04-28]** **ComfyUI custom nodes** released: [ComfyUI-MotifVideo2B](https://github.com/MotifTechnologies/ComfyUI-MotifVideo2B). GGUF workflow support coming soon.
|
| 68 |
- **[2026-04-28]** **GGUF quantized weights** now available at [Motif-Video-2B-GGUF](https://huggingface.co/Motif-Technologies/Motif-Video-2B-GGUF) — up to 2.7 GB VRAM savings with no speed penalty. **SageAttention** support for ~2× faster inference. See [GGUF + SageAttention](#🧊-gguf--sageattention) below.
|
| 69 |
- **[2026-04-14]** We release **Motif-Video 2B**, our 2B-parameter text-to-video and image-to-video diffusion transformer, together with the full [technical report](https://arxiv.org/abs/2604.16503).
|
| 70 |
|
|
|
|
| 386 |
|
| 387 |
### 🖥️ ComfyUI
|
| 388 |
|
| 389 |
+
Official ComfyUI custom nodes: [ComfyUI-MotifVideo2B](https://github.com/MotifTechnologies/ComfyUI-MotifVideo2B)
|
| 390 |
+
|
| 391 |
+
> **Note:** Currently requires **High VRAM** mode. GGUF quantized model loading in ComfyUI is in progress.
|
| 392 |
|
| 393 |
---
|
| 394 |
|