File size: 2,015 Bytes
73ce9b7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | ---
license: mit
tags:
- stable-diffusion
- lora
- safetensors
- text-to-image
- real-estate
- kohya-ss
base_model: runwayml/stable-diffusion-v1-5
---
# Crestline Shreshth
## Model Description
Crestline-Shreshth is a Stable Diffusion 1.5 LoRA fine-tuned for generating photorealistic real estate imagery. It produces high-quality visuals of residential and commercial properties, interiors, and architectural renders — ideal for real estate marketing, virtual staging, and property visualization.
## Model Architecture
- **Base Model**: Stable Diffusion v1.5 (`runwayml/stable-diffusion-v1-5`)
- **Fine-tuning Method**: LoRA (Low-Rank Adaptation) v2
- **Framework**: Diffusers / Kohya-SS
- **Task**: Text-to-Image Generation (Real Estate Domain)
## Training Details
- **Training Tool**: Kohya-SS LoRA trainer
- **Domain**: Real estate photography — interiors, exteriors, architectural renders
- **Version**: v2 (improved over v1 with more training data and better trigger words)
- **Steps**: Fine-tuned to convergence on curated real estate image dataset
## Files
| File | Description |
|------|-------------|
| `Crestline_Shreshth_v2.safetensors` | LoRA weights v2 (safetensors format) |
## Usage
```python
from diffusers import StableDiffusionPipeline
import torch
from huggingface_hub import hf_hub_download
# Download LoRA weights
lora_path = hf_hub_download(repo_id='devanshty/Crestline-Shreshth', filename='Crestline_Shreshth_v2.safetensors')
# Load base pipeline
pipe = StableDiffusionPipeline.from_pretrained(
"runwayml/stable-diffusion-v1-5",
torch_dtype=torch.float16
).to("cuda")
# Load LoRA weights
pipe.load_lora_weights(lora_path)
# Generate
image = pipe("luxury modern living room, real estate photography, bright natural light, 4K").images[0]
image.save("output.png")
```
## Download & Use
```python
from huggingface_hub import hf_hub_download
lora_path = hf_hub_download(repo_id='devanshty/Crestline-Shreshth', filename='Crestline_Shreshth_v2.safetensors')
```
|