模型:

hakurei/waifu-diffusion

英文

waifu-diffusion v1.4 - Weebs的扩散

waifu-diffusion是一个潜在的文本到图像扩散模型,经过精细调整以高质量的动漫图像为条件。

杰作,最佳质量,1girl,绿色头发,毛衣,看着观众,上半身,小便帽,户外,水彩画,夜晚,高领衫

Original Weights

Gradio & Colab

我们还支持一个 Gradio Web UI和Colab,以通过Diffusers运行Waifu Diffusion:

模型描述

See here for a full model overview.

许可证

该模型是开放访问的,所有人都可以使用,使用的具体权利和用途在CreativeML OpenRAIL-M许可证中进行了进一步的规定。CreativeML OpenRAIL许可证具体规定如下:

  • 您不能使用该模型故意生成或分享非法或有害的输出或内容
  • 作者对您生成的输出不享有任何权利,您可以自由使用这些输出,并对其使用负责,但使用不得违反许可证中的规定
  • 您可以重新分发权重并将模型作为商业和/或服务使用。如果这样做,请注意您必须包括与许可证中相同的使用限制,并向所有用户分享CreativeML OpenRAIL-M的副本(请完整和仔细阅读许可证) Please read the full license here
  • 下游用途

    该模型可用于娱乐目的和生成艺术助手。

    示例代码

    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