Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- text-to-image
|
4 |
+
- stable-diffusion
|
5 |
+
- lora
|
6 |
+
- diffusers
|
7 |
+
- template:sd-lora
|
8 |
+
widget:
|
9 |
+
- text: 'Interior room of the house with plants, a chair and candles, space to relax, soft lighting, pastel colors, style of ultrafine detail, high quality photo --ar 2:3 --v 5'
|
10 |
+
output:
|
11 |
+
url: images/11111.png
|
12 |
+
- text: 'Interior of a van with blue water across the road, in the style of romantic landscape vistas, light beige and amber, sleepycore, maximalism, eco-friendly craftsmanship, luxurious drapery, photo taken with provia --ar 128:85 --v 6.0 --style raw'
|
13 |
+
output:
|
14 |
+
url: images/22222.png
|
15 |
+
- text: 'The modern living room by david carroll manne for stocksy united, in the style of highly detailed foliage, light brown, emerson silva, white background, leather/ hide, natural fibers, stock photo --v 5'
|
16 |
+
output:
|
17 |
+
url: images/33333.png
|
18 |
+
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
19 |
+
instance_prompt: Interior Architecture, Interior Design, Modern Design
|
20 |
+
license: creativeml-openrail-m
|
21 |
+
---
|
22 |
+
# Canopus-Interior-Architecture-0.1δ
|
23 |
+
|
24 |
+
<Gallery />
|
25 |
+
|
26 |
+
**The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
|
27 |
+
|
28 |
+
## Model description
|
29 |
+
|
30 |
+
**prithivMLmods/Canopus-Interior-Architecture-0.1**
|
31 |
+
|
32 |
+
Image Processing Parameters
|
33 |
+
|
34 |
+
| Parameter | Value | Parameter | Value |
|
35 |
+
|---------------------------|--------|---------------------------|--------|
|
36 |
+
| LR Scheduler | constant | Noise Offset | 0.03 |
|
37 |
+
| Optimizer | AdamW | Multires Noise Discount | 0.1 |
|
38 |
+
| Network Dim | 64 | Multires Noise Iterations | 10 |
|
39 |
+
| Network Alpha | 32 | Repeat & Steps | 23 & 2200 |
|
40 |
+
| Epoch | 10 | Save Every N Epochs | 1 |
|
41 |
+
|
42 |
+
|
43 |
+
## Trigger prompts
|
44 |
+
|
45 |
+
Interior room of the house with plants, a chair and candles, space to relax, soft lighting, pastel colors, style of ultrafine detail, high quality photo --ar 2:3 --v 5
|
46 |
+
|
47 |
+
Interior of a van with blue water across the road, in the style of romantic landscape vistas, light beige and amber, sleepycore, maximalism, eco-friendly craftsmanship, luxurious drapery, photo taken with provia --ar 128:85 --v 6.0 --style raw
|
48 |
+
|
49 |
+
The modern living room by david carroll manne for stocksy united, in the style of highly detailed foliage, light brown, emerson silva, white background, leather/ hide, natural fibers, stock photo --v 5
|
50 |
+
|
51 |
+
|
52 |
+
| Parameter | Value |
|
53 |
+
|-----------------|---------------------------------------------------------------------------------------|
|
54 |
+
| Prompt | The modern living room by david carroll manne for stocksy united, in the style of highly detailed foliage, light brown, emerson silva, white background, leather/ hide, natural fibers, stock photo --v 5 |
|
55 |
+
| Sampler | euler |
|
56 |
+
|
57 |
+
|
58 |
+
## Trigger words
|
59 |
+
|
60 |
+
You should use `Interior Architecture` to trigger the image generation.
|
61 |
+
|
62 |
+
You should use `Interior Design` to trigger the image generation.
|
63 |
+
|
64 |
+
You should use `Modern Design` to trigger the image generation.
|
65 |
+
|
66 |
+
|
67 |
+
## Usage
|
68 |
+
|
69 |
+
```py
|
70 |
+
from diffusers import DPMSolverMultistepScheduler
|
71 |
+
from optimum.neuron import NeuronStableDiffusionXLInpaintPipeline
|
72 |
+
|
73 |
+
pipe = NeuronStableDiffusionXLInpaintPipeline.from_pretrained("Shekswess/stable-diffusion-xl-1.0-inpainting-0.1-neuron", device_ids=[0, 1])
|
74 |
+
pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config)
|
75 |
+
prompt = "Interior of a van with blue water across the road, in the style of romantic landscape vistas, light beige and amber, sleepycore, maximalism, eco-friendly craftsmanship, luxurious drapery, photo taken with provia --ar 128:85 --v 6.0 --style raw"
|
76 |
+
|
77 |
+
image = pipe(
|
78 |
+
prompt=prompt
|
79 |
+
).images[0].save("output.png")
|
80 |
+
```
|
81 |
+
|
82 |
+
## Download model
|
83 |
+
|
84 |
+
Weights for this model are available in Safetensors format.
|
85 |
+
|
86 |
+
[Download](https://huggingface.co/Shekswess/Canopus-Interior-Architecture-0.1-Neuron/new/main) them in the Files & versions tab.
|