prithivMLmods
commited on
Commit
•
4606640
1
Parent(s):
d785408
Update README.md
Browse files
README.md
CHANGED
@@ -23,10 +23,62 @@ license: creativeml-openrail-m
|
|
23 |
|
24 |
<Gallery />
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
## Trigger words
|
28 |
|
29 |
-
You should use
|
30 |
|
31 |
|
32 |
## Download model
|
|
|
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 |
+
Canopus Photo Realism
|
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 | 28 |
|
40 |
+
| Epoch | 10 | Save Every N Epochs | 1 |
|
41 |
+
|
42 |
+
## SETTING-UP
|
43 |
+
|
44 |
+
```py
|
45 |
+
pipe = StableDiffusionXLPipeline.from_pretrained(
|
46 |
+
"-------------xxxxxxxxx----------",
|
47 |
+
torch_dtype=torch.float16,
|
48 |
+
use_safetensors=True,
|
49 |
+
)
|
50 |
+
(or)
|
51 |
+
-----------------------------------------------------------
|
52 |
+
pipe = StableDiffusionXLPipeline.from_pretrained(
|
53 |
+
"stabilityai/stable-diffusion-xl-base-1.0",
|
54 |
+
torch_dtype=torch.float16,
|
55 |
+
use_safetensors=True,
|
56 |
+
)
|
57 |
+
pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
|
58 |
+
|
59 |
+
pipe.load_lora_weights("prithivMLmods/Pegasi-Minimalist-Image-Style", weight_name="Pegasi-Minimalist-Image-Style.safetensors", adapter_name="minimalist")
|
60 |
+
pipe.set_adapters("minimalist")
|
61 |
+
pipe.to("cuda")
|
62 |
+
```
|
63 |
+
## Trigger prompts
|
64 |
+
|
65 |
+
A picture that depicts a Hiker, in the style of delicate paper cutouts, white and azure, album covers, white medium, grainy, oshare kei, white background, minimal
|
66 |
+
|
67 |
+
|
68 |
+
Bird, in the style of minimalist illustrator, reinterpreted human form, iconic album covers, white and violet, stop-motion animation, elongated forms, flat illustrations
|
69 |
+
|
70 |
+
|
71 |
+
A Hamburger on a pink background, in the style of cinquecento, captured essence of the moment, layered expressiveness, intricate cut-outs backgrounds, film photography, studio photography
|
72 |
+
|
73 |
+
| Parameter | Value |
|
74 |
+
|-----------------|---------------------------------------------------------------------------------------|
|
75 |
+
| Prompt | A Hamburger on a pink background, in the style of cinquecento, captured essence of the moment, layered expressiveness, intricate cut-outs backgrounds, film photography, studio photography |
|
76 |
+
| Sampler | euler |
|
77 |
+
|
78 |
|
79 |
## Trigger words
|
80 |
|
81 |
+
You should use **`minimalist, minimal, minimalist illustrator`** to trigger the image generation.
|
82 |
|
83 |
|
84 |
## Download model
|