Text-to-Image
Diffusers
Safetensors
English
StableDiffusionPipeline
stable-diffusion
stable-diffusion-diffusers
Instructions to use wavymulder/Analog-Diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use wavymulder/Analog-Diffusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("wavymulder/Analog-Diffusion", 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
add gradio demo
#5
by akhaliq HF Staff - opened
README.md
CHANGED
|
@@ -18,6 +18,12 @@ inference: true
|
|
| 18 |

|
| 19 |
[*CKPT DOWNLOAD LINK*](https://huggingface.co/wavymulder/Analog-Diffusion/resolve/main/analog-diffusion-1.0.ckpt) - This is a dreambooth model trained on a diverse set of analog photographs.
|
| 20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
In your prompt, use the activation token: `analog style`
|
| 22 |
|
| 23 |
You may need to use the words `blur` `haze` `naked` in your negative prompts. My dataset did not include any NSFW material but the model seems to be pretty horny. Note that using `blur` and `haze` in your negative prompt can give a sharper image but also a less pronounced analog film effect.
|
|
|
|
| 18 |

|
| 19 |
[*CKPT DOWNLOAD LINK*](https://huggingface.co/wavymulder/Analog-Diffusion/resolve/main/analog-diffusion-1.0.ckpt) - This is a dreambooth model trained on a diverse set of analog photographs.
|
| 20 |
|
| 21 |
+
## Gradio
|
| 22 |
+
|
| 23 |
+
We support a [Gradio](https://github.com/gradio-app/gradio) Web UI to run Analog-Diffusion:
|
| 24 |
+
|
| 25 |
+
[Open in Spaces](https://huggingface.co/spaces/akhaliq/Analog-Diffusion)
|
| 26 |
+
|
| 27 |
In your prompt, use the activation token: `analog style`
|
| 28 |
|
| 29 |
You may need to use the words `blur` `haze` `naked` in your negative prompts. My dataset did not include any NSFW material but the model seems to be pretty horny. Note that using `blur` and `haze` in your negative prompt can give a sharper image but also a less pronounced analog film effect.
|