SkillAgentSearch skills...

LUMIERE

Implementation of the text to video model LUMIERE from the paper: "A Space-Time Diffusion Model for Video Generation" by Google Research

Install / Use

/learn @kyegomez/LUMIERE
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Multi-Modality

Lumiere

Implementation of the text to video model LUMIERE from the paper: "A Space-Time Diffusion Model for Video Generation" by Google Research. I will mostly be implementing the modules from the diagram a and b in figure 4

Install

pip install lumiere

Usage

import torch
from lumiere.model import AttentionBasedInflationBlock

# B, T, H, W, D
x = torch.randn(1, 4, 224, 224, 512)

# Model
model = AttentionBasedInflationBlock(dim=512, heads=4, dropout=0.1)

# Forward pass
out = model(x)

# print
print(out.shape)  # Expected shape: [1, 4, 224, 224, 512]

Test

poetry run pytest

# or
pytest tests/

License

MIT

View on GitHub
GitHub Stars52
CategoryContent
Updated4mo ago
Forks5

Languages

Python

Security Score

97/100

Audited on Nov 19, 2025

No findings