You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check out the full script [here](https://gist.github.com/sayakpaul/508d89d7aad4f454900813da5d42ca97).
199
199
200
+
## Tiny AutoEncoder for Stable Diffusion 3
201
+
202
+
Tiny AutoEncoder for Stable Diffusion (TAESD3) is a tiny distilled version of Stable Diffusion 3's VAE by [Ollin Boer Bohan](https://github.com/madebyollin/taesd) that can decode [`StableDiffusion3Pipeline`] latents almost instantly.
203
+
204
+
To use with Stable Diffusion 3:
205
+
206
+
```python
207
+
import torch
208
+
from diffusers import StableDiffusion3Pipeline, AutoencoderTiny
## Loading the original checkpoints via `from_single_file`
201
223
202
224
The `SD3Transformer2DModel` and `StableDiffusion3Pipeline` classes support loading the original checkpoints via the `from_single_file` method. This method allows you to load the original checkpoint files that were used to train the models.
0 commit comments