Instructions to use Osama03/Finetuned_diffusion_interiordesign with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Osama03/Finetuned_diffusion_interiordesign with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("CompVis/stable-diffusion-v1-4", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("Osama03/Finetuned_diffusion_interiordesign") prompt = "Design a modern home office with a large wooden desk facing a window, a comfortable ergonomic chair, and shelves filled with books and decorative items. Include a laptop on the desk, a small indoor plant, and a motivational quote framed on the wall. The color scheme should be calm and professional, with light gray walls and blue accents." image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Add generated example
#1
by Osama03 - opened
- README.md +10 -0
- images/example_izowsnvkj.png +0 -0
README.md
CHANGED
|
@@ -9,6 +9,16 @@ tags:
|
|
| 9 |
- text-to-image
|
| 10 |
- room_images_generation
|
| 11 |
library_name: diffusers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
# Room Design Text-to-Image Generator (Fine-Tuned Stable Diffusion v1-4)
|
| 14 |
## Model Description
|
|
|
|
| 9 |
- text-to-image
|
| 10 |
- room_images_generation
|
| 11 |
library_name: diffusers
|
| 12 |
+
widget:
|
| 13 |
+
- text: >-
|
| 14 |
+
Design a modern home office with a large wooden desk facing a window, a
|
| 15 |
+
comfortable ergonomic chair, and shelves filled with books and decorative
|
| 16 |
+
items. Include a laptop on the desk, a small indoor plant, and a
|
| 17 |
+
motivational quote framed on the wall. The color scheme should be calm and
|
| 18 |
+
professional, with light gray walls and blue accents.
|
| 19 |
+
output:
|
| 20 |
+
url: images/example_izowsnvkj.png
|
| 21 |
+
|
| 22 |
---
|
| 23 |
# Room Design Text-to-Image Generator (Fine-Tuned Stable Diffusion v1-4)
|
| 24 |
## Model Description
|
images/example_izowsnvkj.png
ADDED
|