File size: 936 Bytes
0b161b3 4bd4fe0 0b161b3 4bd4fe0 0b161b3 24b2dcf 0b161b3 24b2dcf 0b161b3 f1a54fc 0b161b3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
Hugging Face's logo
Hugging Face
Search models, datasets, users...
Models
Datasets
Spaces
Docs
Solutions
Pricing
---
language:
- en
license: other
tags:
- stable-diffusion
- stable-diffusion-diffusers
- text-to-image
- photorealistic
- photoreal
- diffusers
inference: true
---
Make people look like they have Juggalo Face Makeup
### 🧨 Diffusers
This model can be used just like any other Stable Diffusion model. For more information,
please have a look at the [Stable Diffusion Pipeline](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
```python
from diffusers import StableDiffusionPipeline
import torch
model_id = "cledoux42/JUGGALO"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")
prompt = "A JUGGALO"
image = pipe(prompt).images[0]
image.save("./result.jpg")
```
# License
This model is licesed under a CreativeML OpenRAIL-M license.
|