Skip to content

Commit a05a5fb

Browse files
authored
Update main README (huggingface#120)
* Update README.md * Update README.md
1 parent 71faf34 commit a05a5fb

File tree

1 file changed

+15
-11
lines changed

1 file changed

+15
-11
lines changed

README.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,21 @@ In order to get started, we recommend taking a look at two notebooks:
3333
Take a look at this notebook to learn how to use the pipeline abstraction, which takes care of everything (model, scheduler, noise handling) for you, but also to get an understanding of each independent building blocks in the library.
3434
- The [Training diffusers](https://colab.research.google.com/gist/anton-l/cde0c3643e991ad7dbc01939865acaf4/diffusers_training_example.ipynb) notebook, which summarizes diffuser model training methods. This notebook takes a step-by-step approach to training your
3535
diffuser model on an image dataset, with explanatory graphics.
36+
37+
## Examples
38+
39+
If you want to run the code yourself 💻, you can try out:
40+
- [Text-to-Image Latent Diffusion](https://huggingface.co/CompVis/ldm-text2im-large-256)
41+
- [Unconditional Latent Diffusion](https://huggingface.co/CompVis/ldm-celebahq-256#)
42+
- [Unconditional Diffusion with discrete scheduler](https://huggingface.co/google/ddpm-celebahq-256)
43+
- [Unconditional Diffusion with continous scheduler](https://huggingface.co/google/ncsnpp-ffhq-1024)
44+
45+
If you just want to play around with some web demos, you can try out the following 🚀 Spaces:
46+
| Model | Hugging Face Spaces |
47+
|-------------------------------- |------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
48+
| Text-to-Image Latent Diffusion | [![Hugging Face Spaces](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-blue)](https://huggingface.co/spaces/CompVis/text2img-latent-diffusion) |
49+
| Faces generator | [![Hugging Face Spaces](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-blue)](https://huggingface.co/spaces/CompVis/celeba-latent-diffusion) |
50+
| DDPM with different schedulers | [![Hugging Face Spaces](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-blue)](https://huggingface.co/spaces/fusing/celeba-diffusion) |
3651

3752
## Definitions
3853

@@ -77,18 +92,7 @@ The class provides functionality to compute previous image according to alpha, b
7792
pip install diffusers # should install diffusers 0.1.2
7893
```
7994

80-
## Examples
81-
82-
If you want to run the code yourself 💻, you can try out:
83-
- [Text-to-Image Latent Diffusion](https://huggingface.co/CompVis/ldm-text2im-large-256#usage)
84-
- [Unconditional Latent Diffusion](https://huggingface.co/CompVis/ldm-celebahq-256#inference-with-an-unrolled-loop)
85-
- [Unconditional Diffusion with discrete scheduler](https://huggingface.co/google/ddpm-celebahq-256)
86-
- [Unconditional Diffusion with continous scheduler](https://huggingface.co/google/ncsnpp-ffhq-1024)
8795

88-
If you just want to play around with some models, you can try out the following 🚀 spaces:
89-
- [Text-to-Image Latent Diffusion](https://huggingface.co/spaces/CompVis/text2img-latent-diffusion)
90-
- [Faces generator](https://huggingface.co/spaces/CompVis/celeba-latent-diffusion)
91-
- [DDPM with different schedulers](https://huggingface.co/spaces/fusing/celeba-diffusion)
9296

9397
## In the works
9498

0 commit comments

Comments
 (0)