File size: 1,336 Bytes
9f8c606
 
 
 
 
 
 
 
 
 
33bac76
 
bb8b8d0
c0dc3e2
9f8c606
 
 
 
 
 
 
 
 
 
 
 
44494c4
9f8c606
 
 
5c99245
9f8c606
 
 
5c99245
9f8c606
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
---
license: apache-2.0
datasets:
- yandex/alchemist
language:
- en
base_model:
- stabilityai/stable-diffusion-3.5-medium
---

![Intro image](https://i.ibb.co/whm5Dp5F/mosaic-10-1.png "Alchemist's tune generations")

# Stable Diffusion 3.5 Medium Alchemist 👨‍🔬

[Stable Diffusion 3.5 Medium Alchemist](https://huggingface.co/yandex/stable-diffusion-3.5-medium-alchemist) is finetuned version of [Stable Diffusion 3.5 Medium](https://huggingface.co/stabilityai/stable-diffusion-3.5-medium) on [Alchemist](https://huggingface.co/datasets/yandex/alchemist) dataset, proposed in the research paper "Alchemist: Turning Public Text-to-Image Data into Generative Gold". Model generates images with improved aesthetics and complexity. Find more details about dataset and training details in the paer

## Using with Diffusers
Upgrade to the latest version of the [🧨 diffusers library](https://github.com/huggingface/diffusers)
```
pip install -U diffusers
```

and then you can run
```py
import torch
from diffusers import StableDiffusion3Pipeline

pipe = StableDiffusion3Pipeline.from_pretrained("yandex/stable-diffusion-3.5-medium-alchemist", torch_dtype=torch.bfloat16)
pipe = pipe.to("cuda")
image = pipe(
    "a man standing under a tree",
    num_inference_steps=40,
    guidance_scale=4.5,
).images[0]
image.save("man.png")
```