CoolFace
Modelpublic

Harish-as-harry/Pudgy-penguin

sourceHugging Faceotherupdated 11mo agoView on Hugging Face
0likes41downloads
Model Card

Pudgy Penguin LoRA Model

High-quality LoRA weights for generating Pudgy Penguin style images with Stable Diffusion XL.

Model Description

Pudgy Penguin LoRA weights for Stable Diffusion XL, optimized for generating cute and charming penguin characters.

Files

  • pudgy_penguin_lora_weights.safetensors: Main LoRA weights (SafeTensors format, 89.7 MB)

Usage

python
from diffusers import StableDiffusionXLPipeline
import torch

# Load base model
pipe = StableDiffusionXLPipeline.from_pretrained(
    "stabilityai/stable-diffusion-xl-base-1.0",
    torch_dtype=torch.float16
)
pipe.to("cuda")

# Load LoRA weights
pipe.load_lora_weights("Harish-as-harry/Pudgy-penguin", weight_name="pudgy_penguin_lora_weights.safetensors")

# Generate image
prompt = "pudgy penguin, cute, high quality"
image = pipe(prompt).images[0]
image.save("pudgy_penguin.png")

Recommended Settings

  • CFG Scale: 7-9
  • Steps: 30-50
  • Sampler: DPM++ 2M Karras or Euler a
  • LoRA Weight: 0.7-1.0

Example Prompts

pudgy penguin, cute, adorable, high quality, detailed
pudgy penguin character, winter scene, snow, professional photography
pudgy penguin, colorful background, 4k, masterpiece

License

Released under the other license. Please use responsibly.