prithivMLmods
commited on
Commit
•
838ad97
1
Parent(s):
5b7aadb
Update README.md
Browse files
README.md
CHANGED
@@ -32,7 +32,66 @@ license: creativeml-openrail-m
|
|
32 |
|
33 |
<Gallery />
|
34 |
|
|
|
35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
## Download model
|
38 |
|
|
|
32 |
|
33 |
<Gallery />
|
34 |
|
35 |
+
**The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
|
36 |
|
37 |
+
## Model description
|
38 |
+
|
39 |
+
Canopus Photo Realism
|
40 |
+
|
41 |
+
Image Processing Parameters
|
42 |
+
|
43 |
+
| Parameter | Value | Parameter | Value |
|
44 |
+
|---------------------------|--------|---------------------------|--------|
|
45 |
+
| LR Scheduler | constant | Noise Offset | 0.03 |
|
46 |
+
| Optimizer | AdamW | Multires Noise Discount | 0.1 |
|
47 |
+
| Network Dim | 64 | Multires Noise Iterations | 10 |
|
48 |
+
| Network Alpha | 32 | Repeat & Steps | 20 & 1000 |
|
49 |
+
| Epoch | 10 | Save Every N Epochs | 1 |
|
50 |
+
|
51 |
+
## SETTING-UP
|
52 |
+
|
53 |
+
```py
|
54 |
+
pipe = StableDiffusionXLPipeline.from_pretrained(
|
55 |
+
"-------------xxxxxxxxx----------",
|
56 |
+
torch_dtype=torch.float16,
|
57 |
+
use_safetensors=True,
|
58 |
+
)
|
59 |
+
(or)
|
60 |
+
-----------------------------------------------------------
|
61 |
+
pipe = StableDiffusionXLPipeline.from_pretrained(
|
62 |
+
"stabilityai/stable-diffusion-xl-base-1.0",
|
63 |
+
torch_dtype=torch.float16,
|
64 |
+
use_safetensors=True,
|
65 |
+
)
|
66 |
+
pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
|
67 |
+
|
68 |
+
pipe.load_lora_weights("prithivMLmods/Canopus-Clothing-Adp-LoRA", weight_name="Canopus-Dress-Clothing-LoRA.safetensors", adapter_name="clth")
|
69 |
+
pipe.set_adapters("clth")
|
70 |
+
pipe.to("cuda")
|
71 |
+
```
|
72 |
+
## Trigger prompts
|
73 |
+
|
74 |
+
Front view, capture a urban style, Hoodie, technical materials, fabric small point label on text 'Graytheory', the design is minimal, with a raised collar, fabric is a dark grey, low angle to capture the Hoodie's form and detailing, f/5.6 to focus on the hoodie's craftsmanship, solid grey background, studio light setting
|
75 |
+
|
76 |
+
Front view, capture a urban style, Hoodie, technical materials, fabric small point label on text 'yellow theory', the design is minimal, with a raised collar, fabric is a light yellow, low angle to capture the Hoodie's form and detailing, f/5.6 to focus on the hoodie's craftsmanship, solid grey background, studio light setting
|
77 |
+
|
78 |
+
Front view, capture a urban style, Hoodie, technical materials, fabric small point label on text 'red theory', the design is minimal, with a raised collar, fabric is a light red, low angle to capture the Hoodie's form and detailing, f/5.6 to focus on the hoodie's craftsmanship, solid grey background, studio light setting
|
79 |
+
|
80 |
+
Front view, capture a urban style, Batman Hoodie, technical materials, fabric small point label on text 'Black theory', the design is minimal, with a raised collar, fabric is a Light red, low angle to capture the Hoodie's form and detailing, f/5.6 to focus on the hoodie's craftsmanship, solid grey background, studio light setting, with batman logo in the chest region of the t-shirt
|
81 |
+
|
82 |
+
Front view, capture a urban style, Superman Hoodie, technical materials, fabric small point label on text 'Blue theory', the design is minimal, with a raised collar, fabric is a Light yellow, low angle to capture the Hoodie's form and detailing, f/5.6 to focus on the hoodie's craftsmanship, solid grey background, studio light setting, with batman logo in the chest region of the t-shirt
|
83 |
+
|
84 |
+
Front view, capture a urban style, Gta Hoodie, technical materials, fabric small point label on text 'Green theory', the design is minimal, with a raised collar, fabric is a Rose, low angle to capture the Hoodie's form and detailing, f/5.6 to focus on the hoodie's craftsmanship, solid grey background, studio light setting, with batman logo in the chest region of the t-shirt
|
85 |
+
|
86 |
+
| Parameter | Value |
|
87 |
+
|-----------------|---------------------------------------------------------------------------------------|
|
88 |
+
| Prompt | Front view, capture a urban style, Superman Hoodie, technical materials, fabric small point label on text 'Blue theory', the design is minimal, with a raised collar, fabric is a Light yellow, low angle to capture the Hoodie's form and detailing, f/5.6 to focus on the hoodie's craftsmanship, solid grey background, studio light setting, with batman logo in the chest region of the t-shirt |
|
89 |
+
| Sampler | euler |
|
90 |
+
|
91 |
+
|
92 |
+
## Trigger words
|
93 |
+
|
94 |
+
You should use **`Dress, Cloth, Cloth style, Material Style`** to trigger the image generation.
|
95 |
|
96 |
## Download model
|
97 |
|