模型:
dreamlike-art/dreamlike-diffusion-1.0
对于 SD 1.5,使用与以前相同的提示。如果艺术风格太弱,请添加 dreamlikeart。对于某些提示,非方形的纵横比效果更好。如果您想要肖像照片,请尝试使用2:3或者9:16的纵横比。如果您想要风景照片,请尝试使用3:2或者16:9的纵横比。为了获得更好的结果,使用稍高分辨率:640x640像素,512x768像素,768x512像素等。
https://huggingface.co/dreamlike-art/dreamlike-photoreal-2.0
您可以在 dreamlike.art 上免费使用此模型!
我们支持一个 Gradio 的 Web UI 来运行梦幻扩散1.0版本:
Download dreamlike-diffusion-1.0.ckpt (2.13GB)
这个模型可以像其他 Stable Diffusion 模型一样使用。要获取更多信息,请查看 Stable Diffusion Pipeline 。
from diffusers import StableDiffusionPipeline import torch model_id = "dreamlike-art/dreamlike-diffusion-1.0" pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16) pipe = pipe.to("cuda") prompt = "dreamlikeart, a grungy woman with rainbow hair, travelling between dimensions, dynamic pose, happy, soft eyes and narrow chin, extreme bokeh, dainty figure, long hair straight down, torn kawaii shirt and baggy jeans, In style of by Jordan Grimmer and greg rutkowski, crisp lines and color, complex background, particles, lines, wind, concept art, sharp focus, vivid colors" image = pipe(prompt).images[0] image.save("./result.jpg")
该模型根据 CreativeML OpenRAIL-M 许可证进行了修改。