Instructions to use nitrosocke/Future-Diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use nitrosocke/Future-Diffusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("nitrosocke/Future-Diffusion", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Commit ·
12cf6eb
1
Parent(s): bd10d4d
Correct `sample_size` of Stable Diffusion 2's unet to have correct width and height default
Browse filesSince `diffusers==0.9.0` the width and height is automatically inferred from the `sample_size` attribute of your unet's config. It seems like your diffusion model has the same architecture as Stable Diffusion 2 which means that when using this model, by default an image size of 768x768 should be generated. This in turn means the unet's sample size should be **96**.
In order to suppress to update your configuration on the fly and to suppress the deprecation warning added in this PR: https://github.com/huggingface/diffusers/pull/1406/files#r1035703505 it is strongly recommended to merge this PR.
- unet/config.json +1 -1
unet/config.json
CHANGED
|
@@ -35,7 +35,7 @@
|
|
| 35 |
"num_class_embeds": null,
|
| 36 |
"only_cross_attention": false,
|
| 37 |
"out_channels": 4,
|
| 38 |
-
"sample_size":
|
| 39 |
"up_block_types": [
|
| 40 |
"UpBlock2D",
|
| 41 |
"CrossAttnUpBlock2D",
|
|
|
|
| 35 |
"num_class_embeds": null,
|
| 36 |
"only_cross_attention": false,
|
| 37 |
"out_channels": 4,
|
| 38 |
+
"sample_size": 96,
|
| 39 |
"up_block_types": [
|
| 40 |
"UpBlock2D",
|
| 41 |
"CrossAttnUpBlock2D",
|