diff --git a/README.md b/README.md index e69de29..41dc2e0 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,17 @@ +[![Multi-Modality](agorabanner.png)](https://discord.gg/qUtxnK2NMf) + +# 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 +``` + +``` + + +# License +MIT diff --git a/example.py b/example.py index b9f6ded..3195a75 100644 --- a/example.py +++ b/example.py @@ -1,5 +1,5 @@ import torch -from model import ConvolutionBasedInflationBlock +from lumiere.model import ConvolutionBasedInflationBlock # B, T, H, W, C diff --git a/model.py b/lumiere/model.py similarity index 100% rename from model.py rename to lumiere/model.py