Instructions to use yujiepan/stable-diffusion-3-tiny-random with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use yujiepan/stable-diffusion-3-tiny-random with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("yujiepan/stable-diffusion-3-tiny-random", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,7 +4,7 @@ library_name: diffusers
|
|
| 4 |
|
| 5 |
# yujiepan/stable-diffusion-3-tiny-random
|
| 6 |
|
| 7 |
-
This pipeline is intended
|
| 8 |
|
| 9 |
## Usage
|
| 10 |
```python
|
|
|
|
| 4 |
|
| 5 |
# yujiepan/stable-diffusion-3-tiny-random
|
| 6 |
|
| 7 |
+
This pipeline is intended for debugging. It is adapted from [stabilityai/stable-diffusion-3-medium-diffusers](https://huggingface.co/stabilityai/stable-diffusion-3-medium-diffusers) with smaller size and randomly initialized parameters.
|
| 8 |
|
| 9 |
## Usage
|
| 10 |
```python
|