CoolFace
Modelpublic

Danish1212/pakistani-truck-art-sdxl-lora

sourceHugging Faceopenrail++updated 4mo agoView on Hugging Face
1likes14downloads
Model Card

Pakistani Truck Art โ€” SDXL LoRA ๐Ÿ‡ต๐Ÿ‡ฐ๐ŸŽจ

A LoRA fine-tune of Stable Diffusion XL that generates images in the vibrant tradition of Pakistani truck art (Phool Patti) โ€” the hand-painted floral patterns, bold colors, peacocks, and ornamental borders seen on trucks across Pakistan.

Trained on a curated dataset of original truck art photography.

Trigger word

Include `pktruckart style` in your prompt to activate the style. Without the trigger word, the base model behaves normally.

Usage

python
import torch
from diffusers import StableDiffusionXLPipeline

pipe = StableDiffusionXLPipeline.from_pretrained(
    "stabilityai/stable-diffusion-xl-base-1.0",
    torch_dtype=torch.float16, variant="fp16"
).to("cuda")
pipe.load_lora_weights("Danish1212/pakistani-truck-art-sdxl-lora")

image = pipe(
    "pktruckart style, a peacock surrounded by colorful floral patterns",
    negative_prompt="two heads, extra limbs, deformed, duplicate",
    num_inference_steps=35,
).images[0]
image.save("peacock.png")

Recommended settings

  • โ€”Steps: 30โ€“40
  • โ€”Negative prompt: two heads, extra limbs, deformed, duplicate
  • โ€”Works best on: animals (lions, peacocks, horses), portraits, decorative objects

Training details

  • โ€”Base model: SDXL 1.0 | Method: LoRA (rank 16) | Resolution: 768
  • โ€”trained on Colab

Examples

prompts : "pktruckart style, a portrait of a lion with floral decorations",

[image][image]

Created by Danish โ€” feedback and examples welcome!