Instructions to use hf-internal-testing/tiny-stable-diffusion-pipe with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use hf-internal-testing/tiny-stable-diffusion-pipe with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("hf-internal-testing/tiny-stable-diffusion-pipe", 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
File size: 438 Bytes
695e29d 63b42e3 65bb64e 695e29d 63b42e3 695e29d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | {
"_class_name": "FlaxUNet2DConditionModel",
"_diffusers_version": "0.10.0.dev0",
"attention_head_dim": 8,
"block_out_channels": [
32,
64
],
"cross_attention_dim": 32,
"down_block_types": [
"DownBlock2D",
"CrossAttnDownBlock2D"
],
"dropout": 0.0,
"in_channels": 4,
"layers_per_block": 2,
"out_channels": 4,
"sample_size": 32,
"up_block_types": [
"CrossAttnUpBlock2D",
"UpBlock2D"
]
}
|