diff --git a/README.md b/README.md index 30c9233..ddca671 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Simple DDPM +# Tiny DDPM This is a bare bones and simple DDPM ([Denoising Diffusion Probabilistic Models](https://arxiv.org/abs/2006.11239)) implementation on PyTorch. The whole implementation (model + training + sampling) does not exceed 400 lines of code. The training setup and U-Net model loosely resemble the description of the original paper, but it is not a 1 to 1 implementation. diff --git a/pyproject.toml b/pyproject.toml index b61f113..d819a79 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [project] -name = "simple-ddpm" +name = "tiny-ddpm" version = "0.1.0" description = "Add your description here" readme = "README.md"