Howl LoRA – Sitting Pose
これはハウルという名前のシベリアンハスキーの LoRA モデルです。
Stable Diffusion v1.5 をベースに、正面からお座りして見上げているポーズで学習しました。
推奨プロンプト
howlsilblueodd dog, silvery-white fur only, no black, pure white muzzle and eye area, small ears for a husky, round gentle eyes (not almond-shaped), brown left eye, pale blue right eye, friendly soft face, no facial mask markings, only forehead marking, sitting, front view, looking up slightly, ultra realistic, sharp focus, detailed fur, soft lighting, DSLR style, photo
使用方法(diffusers)
from diffusers import StableDiffusionPipeline
import torch
pipe = StableDiffusionPipeline.from_pretrained(
"runwayml/stable-diffusion-v1-5",
torch_dtype=torch.float16
).to("cuda")
pipe.load_lora_weights("sorasora2025/howl-sit-v2-lora")
pipe.fuse_lora()
prompt = "howl dog, a photo of a sitting husky, front view, looking up"
image = pipe(prompt).images[0]
image.save("howl_sit.png")
Model tree for sorasora2025/howl-sit-v2-lorahowl-sit-lora
Base model
runwayml/stable-diffusion-v1-5