Kivotos XL 2.0 is the latest version of the
Yodayo Kivotos XL series, following the previous iteration,
Kivotos XL 1.0. This open-source model is built upon Animagine XL V3, a specialized SDXL model designed for generating high-quality anime-style artwork. Kivotos XL V2.0 has undergone additional fine-tuning and optimization to focus specifically on generating images that accurately represent the visual style and aesthetics of the Blue Archive franchise.
1import torch
2from diffusers import StableDiffusionXLPipeline
3
4pipe = StableDiffusionXLPipeline.from_pretrained(
5 "yodayo-ai/kivotos-xl-2.0",
6 torch_dtype=torch.float16,
7 use_safetensors=True,
8 custom_pipeline="lpw_stable_diffusion_xl",
9 add_watermarker=False,
10 variant="fp16"
11)
12pipe.to('cuda')
13
14prompt = "1girl, kazusa \(blue archive\), blue archive, solo, upper body, v, smile, looking at viewer, outdoors, night, masterpiece, best quality, very aesthetic, absurdres"
15negative_prompt = "nsfw, (low quality, worst quality:1.2), very displeasing, 3d, watermark, signature, ugly, poorly drawn"
16
17image = pipe(
18 prompt,
19 negative_prompt=negative_prompt,
20 width=832,
21 height=1216,
22 guidance_scale=7,
23 num_inference_steps=28
24).images[0]
25
26image.save("./cat.png")
For optimal results, it's recommended to follow the structured prompt template because we train the model like this:
Kivotos XL 2.0 inherits special tags from Animagine XL 3.1 to enhance image generation by steering results toward quality, rating, creation date, and aesthetic. This inheritance ensures that Kivotos XL 2.0 can produce high-quality, relevant, and aesthetically pleasing images. While the model can generate images without these tags, using them helps achieve better results.
To guide the model towards generating high-aesthetic images, use the following recommended settings:
Kivotos XL 2.0 falls under
Fair AI Public License 1.0-SD license, which is compatible with Stable Diffusion models’ license. Key points: