yandex/stable-diffusion-2-1-alchemist

🤗 Hugging Face 来源text-to-imageapache-2.0866M 参数1.7 GBsafetensors✓ 3 个校验和今天更新
一条命令提交

在你的模型文件夹旁边运行它。它会制作种子、将文件与 Hugging Face 比对,然后提交。你只需开始做种,并粘贴你账户中的密钥。它只读取你的文件,绝不修改。如果愿意,可以先阅读脚本。

curl -fsSL https://pirateface.co/package.sh | bash -s -- --repo yandex/stable-diffusion-2-1-alchemist ./model-folder
需要做种者 →

Stable Diffusion 2.1 Alchemist 👨‍🔬

Stable Diffusion 2.1 Alchemist is finetuned version of Stable Diffusion 2.1 on 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

pip install -U diffusers

and then you can run

import torch
from diffusers import DiffusionPipeline

pipe = DiffusionPipeline.from_pretrained("yandex/stable-diffusion-2-1-alchemist", torch_dtype=torch.float16)
pipe = pipe.to("cuda")
image = pipe(
    "a man standing under a tree",
    num_inference_steps=50,
    guidance_scale=7.5,
).images[0]
image.save("man.png")