Text-to-Image
Diffusers
Safetensors
StableDiffusionXLPipeline
stablediffusionapi.com
stable-diffusion-api
ultra-realistic
Instructions to use Winboy/BLeeds with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Winboy/BLeeds with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Winboy/BLeeds", 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
Upload folder using huggingface_hub
Browse files
text_encoder_2/config.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
| 9 |
"eos_token_id": 2,
|
| 10 |
"hidden_act": "gelu",
|
| 11 |
"hidden_size": 1280,
|
| 12 |
-
"initializer_factor": 1.
|
| 13 |
"initializer_range": 0.02,
|
| 14 |
"intermediate_size": 5120,
|
| 15 |
"layer_norm_eps": 1e-05,
|
|
|
|
| 9 |
"eos_token_id": 2,
|
| 10 |
"hidden_act": "gelu",
|
| 11 |
"hidden_size": 1280,
|
| 12 |
+
"initializer_factor": 1.0,
|
| 13 |
"initializer_range": 0.02,
|
| 14 |
"intermediate_size": 5120,
|
| 15 |
"layer_norm_eps": 1e-05,
|