Text-to-Image
Diffusers
English
lora
stable-diffusion-xl
style
anime
chibi
cute
super-deformed
kawaii
vibrant
simple
sdxl lora
style-lora
portrait
illustration
pop art
flat design
colorful
Instructions to use strkyyy/anime-chibi with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use strkyyy/anime-chibi with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("strkyyy/anime-chibi") prompt = "ch1b1n1me, a tiny pirate with a treasure map" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
| license: openrail++ | |
| language: | |
| - en | |
| library_name: diffusers | |
| pipeline_tag: text-to-image | |
| base_model: stabilityai/stable-diffusion-xl-base-1.0 | |
| instance_prompt: ch1b1n1me | |
| tags: | |
| - lora | |
| - stable-diffusion-xl | |
| - text-to-image | |
| - diffusers | |
| - style | |
| - anime | |
| - chibi | |
| - cute | |
| - super-deformed | |
| - kawaii | |
| - vibrant | |
| - simple | |
| - sdxl lora | |
| - style-lora | |
| - portrait | |
| - illustration | |
| - pop art | |
| - flat design | |
| - colorful | |
| widget: | |
| - text: "ch1b1n1me, a tiny pirate with a treasure map" | |
| - text: "ch1b1n1me, a chibi cat-girl waving hello" | |
| - text: "ch1b1n1me, a tiny knight on a horse" | |
| # Chibi Super-Deformed Anime SDXL LoRA | |
| ## What it does | |
| Transform your text-to-image generation into adorable chibi super-deformed anime style with oversized round heads, tiny bodies, huge expressive eyes, simplified features, bold outlines, vivid flat colors, and cute exaggerated emotions. | |
| ## How to use | |
| Add the trigger word 'ch1b1n1me' to your prompt for instant chibi transformation. For best results, set strength between 0.75-0.9 and use a sampler that works well with LoRA models like Euler or Heun with around 20 steps. | |
| ## Best for | |
| - Tiny pirates with treasure maps | |
| - Chibi cat-girls waving hello | |
| - Miniature knights riding horses | |
| - Small sorcerers casting spells | |
| - Petite ninjas sneaking through grass | |
| ## Tips | |
| - Increase the strength parameter to emphasize chibi features over base model styles. Decrease it if you want a subtler transformation. | |
| - Experiment with different samplers and step counts for unique results. | |
| ## Example Prompts | |
| ``` | |
| ch1b1n1me cute chibi anime girl sitting on a park bench with cherry blossoms in full bloom behind her | |
| ``` | |
| ``` | |
| ch1b1n1me cozy room interior with chibi characters relaxing, soft lighting and pastel colors | |
| ``` | |
| ``` | |
| ch1b1n1me super-deformed robot holding a giant ice cream cone, vibrant sunset background | |
| ``` | |
| ``` | |
| ch1b1n1me chibi ninja jumping through trees in motion blur, dramatic forest scene at dusk | |
| ``` | |
| ``` | |
| ch1b1n1me happy-go-lucky chibi alien floating in space with stars and planets all around | |
| ``` | |
| ``` | |
| ch1b1n1me abstract pattern of colorful chibi faces, bold outlines and flat colors | |
| ``` | |
| ## Trigger word | |
| Activate with `ch1b1n1me`. Recommended strength: **0.9**. | |
| ## Showcase | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
| ## Usage with `diffusers` | |
| ```python | |
| from diffusers import AutoPipelineForText2Image | |
| import torch | |
| pipe = AutoPipelineForText2Image.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", torch_dtype=torch.float16).to("cuda") | |
| pipe.load_lora_weights("strkyyy/anime-chibi") | |
| image = pipe("ch1b1n1me, your prompt", num_inference_steps=30).images[0] | |
| ``` | |