Views
No views yet
AD_KOISHIEien MojikiDiffusers library.


pip install --upgrade diffusers accelerate transformers1import torch
2from diffusers import StableDiffusionPipeline, EulerAncestralDiscreteScheduler
3
4pipe = StableDiffusionPipeline.from_pretrained("moji-ai/NablaThetaA5-v1.0", torch_dtype=torch.float16).to("cuda")
5pipe.scheduler = EulerDiscreteScheduler.from_config(pipeline.scheduler.config)
6
7prompt = "some cool prompt here"
8image = pipe(prompt).images[0]models/Stable-diffusion directory of your AUTOMATIC1111 Web UI instance > Refresh your model list or restart the Stable Diffusion Web UI > Select the custom model from the Stable Diffusion checkpoint input field and make awesome images!!ComfyUI/models/checkpoints/ directory > Restart ComfyUI and make cool images!!CFG: 5.5~7Sampler: Euler aSteps: 28~35High-res: RealESRGAN_x4plus_anime_6B / 15 steps; 0.55~0.6 denoising strengthIt is recommended to use the A5 Stabilizer LORA for generating to see slightly different styles under the same random seed, and in some cases, improve the image to better match your preferences.