英文

粉发男孩戴眼镜,照片,运动身材,电影般的灯光,明亮的眼睛,完美的脸庞,红晕,美丽的鼻子,美丽的眼睛,详细的眼神

动漫扩散

动漫扩散2是基于Vintedois(22h)扩散模型的潜在文本到图像扩散模型,该模型是使用来自Danbou set + 鬼灭之刃 + 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]