模型:
hakurei/artstation-diffusion
artstation-diffusion 是一个潜在的文本到图像扩散模型,通过精细调整对高质量的Artstation图像进行条件训练。
在精细调整期间使用了纵横比分桶。该模型可以非常好地生成不同的纵横比。
骑士,全身研究,概念艺术,氛围
该模型是开放访问的,适用于所有人,采用CreativeML OpenRAIL-M许可证进一步指定权利和使用。CreativeML OpenRAIL许可证规定:
此模型可用于娱乐目的和生成艺术助手。
import torch from torch import autocast from diffusers import StableDiffusionPipeline pipe = StableDiffusionPipeline.from_pretrained( 'hakurei/artstation-diffusion', torch_dtype=torch.float32 ).to('cuda') prompt = "knight, full body study, concept art, atmospheric" with autocast("cuda"): image = pipe(prompt, guidance_scale=6).images[0] image.save("test.png")
要与我联系,您可以加入我的 Discord server 。