Welcome to an exciting journey where we’ll explore the **Clandestine XL** model! This model, fine-tuned from Kivotos XL 2.0, is designed to generate captivating anime illustrations. Whether you’re an artist looking to create stunning digital art or a developer interested in AI-generated content, this guide will help you get started seamlessly.
Overview of Clandestine XL
**Clandestine XL** is a remarkable tool that specializes in producing sharp, stylized anime images drawing inspiration from a rich tapestry of popular AI art styles found on Pixiv. Here, you can create amazing stylized characters with enhanced anatomy.
Key Features
- Developed By: Linaqruf – an innovator in AI art
- Model Type: Stable Diffusion XL
- License: Fair AI Public License 1.0-SD
- Base Model: Kivotos XL 2.0
Setting Up Clandestine XL
To unleash the creative power of Clandestine XL, follow these steps to set it up and start generating art!
1. Installation of Required Libraries
First, ensure that you have the necessary libraries installed. Run the command:
pip install diffusers transformers accelerate safetensors --upgrade
2. Example Code to Generate Images
The main code snippet to generate images with Clandestine XL is as follows:
python
import torch
from diffusers import StableDiffusionXLPipeline
pipe = StableDiffusionXLPipeline.from_pretrained(
"yodayo-aiclandestine-xl-1.0",
torch_dtype=torch.float16,
use_safetensors=True,
custom_pipeline="lpw_stable_diffusion_xl",
add_watermarker=False,
variant="fp16"
)
pipe.to("cuda")
prompt = "1girl, kazusa (blue archive), blue archive, solo, upper body, v, smile, looking at viewer, outdoors, night, masterpiece, best quality, very aesthetic, absurdres"
negative_prompt = "nsfw, (low quality, worst quality:1.2), very displeasing, 3d, watermark, signature, ugly, poorly drawn"
image = pipe(
prompt,
negative_prompt=negative_prompt,
width=832,
height=1216,
guidance_scale=7,
num_inference_steps=28
).images[0]
image.save("cat.png")
This code is like a recipe in cooking – each ingredient (or line of code) contributes to creating the final dish (or image). The model pulls from variables like prompts and negative prompts to ensure the generated art meets your desired aesthetic.
Usage Guidelines
For optimal results with Clandestine XL, follow this structured prompt template:
- Character Type: 1girl or 1boy
- Character Name
- Source Series or Background Information
- Artist Style and Details
- Other Description Elements
This ordered approach ensures the model understands and processes your requests better.
Troubleshooting Tips
If you encounter any issues during setup or usage, consider these troubleshooting strategies:
- Ensure all necessary libraries are installed properly. You can repeat the installation command if needed.
- Check if your GPU is compatible with
torch.cuda()processing. If not, consider using CPU alternatives. - Adjust prompts and parameters iteratively until you receive satisfactory results.
- Refer to the documentation on special tags for better image generation quality.
For more insights, updates, or to collaborate on AI development projects, stay connected with fxis.ai.
Conclusion
At fxis.ai, we believe that such advancements are crucial for the future of AI, as they enable more comprehensive and effective solutions. Our team is continually exploring new methodologies to push the envelope in artificial intelligence, ensuring that our clients benefit from the latest technological innovations.

