Instructions to use deepgoyal20/sd256 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use deepgoyal20/sd256 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("fill-in-base-model", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("deepgoyal20/sd256") 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 ·
5c6238a
1
Parent(s): 098f7da
Update unet/config.json
Browse files- unet/config.json +1 -1
unet/config.json
CHANGED
|
@@ -44,7 +44,7 @@
|
|
| 44 |
"resnet_out_scale_factor": 1.0,
|
| 45 |
"resnet_skip_time_act": false,
|
| 46 |
"resnet_time_scale_shift": "default",
|
| 47 |
-
"sample_size":
|
| 48 |
"time_cond_proj_dim": null,
|
| 49 |
"time_embedding_act_fn": null,
|
| 50 |
"time_embedding_dim": null,
|
|
|
|
| 44 |
"resnet_out_scale_factor": 1.0,
|
| 45 |
"resnet_skip_time_act": false,
|
| 46 |
"resnet_time_scale_shift": "default",
|
| 47 |
+
"sample_size": 32,
|
| 48 |
"time_cond_proj_dim": null,
|
| 49 |
"time_embedding_act_fn": null,
|
| 50 |
"time_embedding_dim": null,
|