英文

粉发眼镜男,照片,运动体型,电影般的照明,明亮的眼睛,完美的面容,腮红,漂亮的鼻子,漂亮的眼睛,细致入微的眼睛

动漫扩散

动漫扩散2是基于Vintedois(22h)扩散模型的潜在文本到图像扩散模型,该模型基于Danbou set + Demon slayer + 4ch的艺术作品的BLIP标题进行训练

模型描述

许可证

该模型是开放访问的,可供所有人使用,使用了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(
        'AlexWortega/AnimeDiffuion2',
        torch_dtype=torch.float32
    ).to('cuda')
    
    negative_prompt = """low-res, duplicate, poorly drawn face, ugly, undetailed face"""
    d = 'white girl'
    prompt = f"pink hair guy in glasses, photograph, sporty body, cinematic lighting, clear eyes, perfect face, blush,  beautiful nose, beautiful eyes, detailed eyes" 
    num_samples = 1
    
    with  torch.inference_mode():
        images = pipe([prompt] * num_samples,
                      negative_prompt = [negative_prompt]*num_samples,
                      height=512, width=512,
                      num_inference_steps=50,
                      guidance_scale=8,
                      ).images
    
    
        
    images[0].save("test.png")
    

    团队成员和致谢

    如果没有 CompVis Researchers 的不可思议的工作,这个项目就不可能实现。

    为了联系我,这是我的博客:

    ![My tg channel]