Text-to-Image
Diffusers
stable-diffusion
lora
template:sd-lora
migrated
character
meme
chonky
chonky cat
Instructions to use Zw3e/Chonky with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Zw3e/Chonky 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("Zw3e/Chonky") prompt = "Chonky looking up, proud, wearing suit" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Chonky

- Prompt
- Chonky looking up, proud, wearing suit
Model description
Chonky the fat cat
Trigger words
You should use Chonky to trigger the image generation.
Download model
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
Use it with the 🧨 diffusers library
from diffusers import AutoPipelineForText2Image
import torch
device = "cuda" if torch.cuda.is_available() else "cpu"
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to(device)
pipeline.load_lora_weights('Zw3e/chonky', weight_name='chonky.safetensors')
image = pipeline('Chonky looking up, proud, wearing suit').images[0]
For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
- Downloads last month
- 5
Model tree for Zw3e/Chonky
Base model
stabilityai/stable-diffusion-xl-base-1.0