模型:
hakurei/waifu-diffusion
waifu-diffusion是一个潜在的文本到图像扩散模型,经过精细调整以高质量的动漫图像为条件。
杰作,最佳质量,1girl,绿色头发,毛衣,看着观众,上半身,小便帽,户外,水彩画,夜晚,高领衫
我们还支持一个 Gradio Web UI和Colab,以通过Diffusers运行Waifu Diffusion:
See here for a full model overview.
该模型是开放访问的,所有人都可以使用,使用的具体权利和用途在CreativeML OpenRAIL-M许可证中进行了进一步的规定。CreativeML OpenRAIL许可证具体规定如下:
该模型可用于娱乐目的和生成艺术助手。
import torch from torch import autocast from diffusers import StableDiffusionPipeline pipe = StableDiffusionPipeline.from_pretrained( 'hakurei/waifu-diffusion', torch_dtype=torch.float32 ).to('cuda') prompt = "1girl, aqua eyes, baseball cap, blonde hair, closed mouth, earrings, green background, hat, hoop earrings, jewelry, looking at viewer, shirt, short hair, simple background, solo, upper body, yellow shirt" with autocast("cuda"): image = pipe(prompt, guidance_scale=6)["sample"][0] image.save("test.png")
该项目离开了Stability AI和Novel AI的令人难以置信的工作。
为了联系我们,您可以加入我们的 Discord server 。