--- license: other license_name: stabilityai-ai-community license_link: >- https://huggingface.co/stabilityai/stable-diffusion-3.5-large/blob/main/LICENSE.md language: - en base_model: - stabilityai/stable-diffusion-3.5-large --- ![eyecatch](eyecatch.jpg) # SD 3.5 Large Modern Anime Full Model Card This is an experimental model. I full-finetune SD 3.5 Large by Quality Tuning only. # Usage - ComfyUI 1. Download the [model](sd3_5_large_modern_anime_full.safetensors). 2. Enjoy! (trigger word: modern anime style, ) - diffusers 1. Run the code: ```python import torch from diffusers import SD3Transformer2DModel, StableDiffusion3Pipeline transformer = SD3Transformer2DModel.from_single_file( "https://huggingface.co/alfredplpl/sd3-5-large-modern-anime-full/blob/main/sd3_5_large_modern_anime_full.safetensors", torch_dtype=torch.bfloat16, ) pipe = StableDiffusion3Pipeline.from_pretrained( "stabilityai/stable-diffusion-3.5-large", transformer=transformer, torch_dtype=torch.bfloat16, ) pipe.enable_model_cpu_offload() image = pipe("modern anime style, A close-up shot of a girl's face in the center, looking directly at the viewer. Autumn maple trees with red leaves frame both the left and right sides of the background, with the sky visible in the middle.").images[0] image.save("sd35.png") ```