🏠 Stable Diffusion v1.5 β€” LoRA Fine-tune (Interior Design, Living Rooms)

Prompt
Modern living room with a red sofa and soft lighting in a vintage style.
Negative Prompt
blurry, distorted, low quality
Prompt
Spacious living room with a leather sofa and a glass coffee table.
Negative Prompt
blurry, distorted, low quality
Prompt
Cozy living room with a fireplace, wooden floors, and neutral tones.
Negative Prompt
blurry, distorted, low quality
Prompt
Luxurious living room with gold accents and a large chandelier.
Negative Prompt
blurry, distorted, low quality
Prompt
Minimalist living room with white walls and a single gray sofa.
Negative Prompt
blurry, distorted, low quality
Prompt
Rustic living room with exposed wooden beams and stone wall accents.
Negative Prompt
blurry, distorted, low quality
Prompt
Living room with a large sectional sofa and soft blue tones.
Negative Prompt
blurry, distorted, low quality
Prompt
Contemporary living room with bold geometric patterns and vibrant colors.
Negative Prompt
blurry, distorted, low quality
Prompt
Living room with an eclectic mix of furniture and a gallery wall.
Negative Prompt
blurry, distorted, low quality
Prompt
Industrial living room with exposed brick walls and metal furniture.
Negative Prompt
blurry, distorted, low quality

This model is a LoRA fine-tune of Stable Diffusion v1.5 (sd-v1-5-pruned-noema-fp16.safetensors) trained to generate photorealistic and style-consistent interior design images, with a focus on living rooms.


πŸ“Š Training Setup

  • Method: DreamBooth + LoRA (via sd-scripts)
  • Resolution: 512Γ—512
  • Batch size: 2
  • Epochs: ~8 per style
  • LoRA config: network_dim = 16, network_alpha = 8
  • Optimizer: AdamW8bit
  • Learning rates: unet = 5e-4, text_encoder = 1e-4
  • Scheduler: cosine with restarts
  • Hardware: NVIDIA T4 (Google Colab Pro)
  • Precision: mixed FP16

πŸ—‚οΈ Dataset

Custom dataset curated from 3 public sources, filtered to living room interiors.
Covers 7 interior design styles:

  • Coastal
  • Industrial
  • Mid-Century Modern
  • Modern
  • Rustic
  • Scandinavian
  • Traditional

Each style was fine-tuned separately, then merged into one balanced checkpoint (merged_lora.safetensors).


πŸ“ Evaluation

Evaluation was performed on 350 generated images with CLIP score (prompt–image alignment) and FID (FrΓ©chet Inception Distance) for visual realism.

  • Overall FID: 88.93 (lower is better, <50 = photorealistic)
  • Style-specific FID:
    • Coastal β€” 160.45 (best)
    • Traditional β€” 176.21
    • Rustic β€” 177.91
    • Scandinavian β€” 177.96
    • Modern β€” 181.65
    • Mid-Century Modern β€” 182.27
    • Industrial β€” 188.65

ℹ️ While FID > 50 means results are not β€œperfectly photorealistic,” qualitative inspection shows this model produces stable and style-coherent room renderings across all seven design styles.


🎯 Trigger Words

Recommended keywords:

interior, living room, house design

Combine with a style for best results:

  • β€œmodern living room interior, cozy house design, ultra realistic”
  • β€œrustic interior living room, warm lighting, photorealistic”

πŸš€ Usage (πŸ€— Diffusers)

from diffusers import StableDiffusionPipeline
import torch

base = "runwayml/stable-diffusion-v1-5"
pipe = StableDiffusionPipeline.from_pretrained(base, torch_dtype=torch.float16).to("cuda")

# load this LoRA
pipe.load_lora_weights("aimhkim174/sd15-lora-livingroom")

image = pipe("modern living room interior design, Scandinavian style, ultra realistic",
             num_inference_steps=30, guidance_scale=7.5).images[0]
image.save("out.png")
Downloads last month
3
Inference Examples
Examples
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for aimhkimi74/sd15-lora-LivingRoom

Adapter
(2707)
this model