模型:
hakurei/artstation-diffusion
artstation-diffusion is a latent text-to-image diffusion model that has been conditioned on high-quality Artstation images through fine-tuning.
Aspect Ratio Bucketing has been used during finetuning. This model can generate different aspect ratios VERY WELL.
knight, full body study, concept art, atmospheric
This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage. The CreativeML OpenRAIL License specifies:
This model can be used for entertainment purposes and as a generative art assistant.
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")
In order to reach me, you can join my Discord server .