点击这里查看: https://huggingface.co/dreamlike-art/dreamlike-photoreal-2.0
Dreamlike Photoreal 1.0是由 dreamlike.art 制作的在高质量照片上进行了微调的逼真稳定扩散1.5模型。
使用与逼真稳定扩散1.5生成器相同的提示。您还可以使用danbooru风格的角色标签(1girl,棕色头发等)。对于某些提示,非正方形的长宽比效果更好。如果您想要一张肖像照片,请尝试使用3:4或9:16的长宽比。如果您想要一张风景照片,请尝试使用16:9的长宽比。
您可以在 dreamlike.art 上免费使用此模型!
Download dreamlike-photoreal-1.0.ckpt (2.13GB)
您可以像使用任何其他稳定扩散模型一样使用此模型。有关更多信息,请查看 Stable Diffusion Pipeline 。
from diffusers import StableDiffusionPipeline import torch model_id = "dreamlike-art/dreamlike-photoreal-1.0" pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16) pipe = pipe.to("cuda") prompt = "caucasian creative man wearing a sweater, sitting, on an icelandic beach" image = pipe(prompt).images[0] image.save("./result.jpg")
这个模型是根据修改后的CreativeML OpenRAIL-M许可证授权的。