Instructions to use MirageML/lowpoly-office with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use MirageML/lowpoly-office with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("MirageML/lowpoly-office", 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 Settings
- Draw Things
- DiffusionBee
Commit ·
dfab1bf
1
Parent(s): 7659fc7
Correct `sample_size` of Stable Diffusion 2's unet to have correct width and height default (#1)
Browse files- Correct `sample_size` of Stable Diffusion 2's unet to have correct width and height default (dac2d35b80129df6a87affd7143f7d643110eb49)
Co-authored-by: Patrick von Platen <patrickvonplaten@users.noreply.huggingface.co>
- 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",
|