modified .gitattributes
Browse files- .gitattributes +1 -6
- README.md +114 -0
.gitattributes
CHANGED
@@ -32,9 +32,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
35 |
-
|
36 |
-
Sample/SampleA_02.png filter=lfs diff=lfs merge=lfs -text
|
37 |
-
Sample/SampleA_03.png filter=lfs diff=lfs merge=lfs -text
|
38 |
-
Sample/SampleB_01.png filter=lfs diff=lfs merge=lfs -text
|
39 |
-
Sample/SampleB_02.png filter=lfs diff=lfs merge=lfs -text
|
40 |
-
Sample/SampleC_01.png filter=lfs diff=lfs merge=lfs -text
|
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
35 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
README.md
CHANGED
@@ -1,3 +1,117 @@
|
|
1 |
---
|
2 |
license: creativeml-openrail-m
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: creativeml-openrail-m
|
3 |
+
pipeline_tag: text-to-image
|
4 |
+
tags:
|
5 |
+
- stable-diffusion
|
6 |
+
- stable-diffusion-diffusers
|
7 |
+
- text-to-image
|
8 |
+
library_name: diffusers
|
9 |
---
|
10 |
+
<style>
|
11 |
+
* {
|
12 |
+
box-sizing: border-box;
|
13 |
+
}
|
14 |
+
|
15 |
+
.column {
|
16 |
+
float: left;
|
17 |
+
width: 100%;
|
18 |
+
padding: 5px;
|
19 |
+
}
|
20 |
+
|
21 |
+
.column2 {
|
22 |
+
float: left;
|
23 |
+
width: 50%;
|
24 |
+
padding: 5px;
|
25 |
+
}
|
26 |
+
|
27 |
+
.column3 {
|
28 |
+
float: left;
|
29 |
+
width: 33.33%;
|
30 |
+
padding: 5px;
|
31 |
+
}
|
32 |
+
|
33 |
+
.row::after {
|
34 |
+
content: "";
|
35 |
+
clear: both;
|
36 |
+
display: table;
|
37 |
+
}
|
38 |
+
|
39 |
+
@media screen and (max-width: 400px) {
|
40 |
+
.column {
|
41 |
+
width: 100%;
|
42 |
+
}
|
43 |
+
.column2 {
|
44 |
+
width: 100%;
|
45 |
+
}
|
46 |
+
}
|
47 |
+
</style>
|
48 |
+
|
49 |
+
<center><img src=https://huggingface.co/mekabu/MagicalMix_v2/resolve/main/MagicalMix_v2_logo.png></center>
|
50 |
+
|
51 |
+
<center><p><h3>What's this model</h></p></center>
|
52 |
+
|
53 |
+
Based on <a href="https://huggingface.co/mekabu/MagicalMix_v1">MagicalMix v1</a>, we aimed for a softer picture.
|
54 |
+
|
55 |
+
By samplers, both anime and softer (like illustration) styles can be expressed.
|
56 |
+
|
57 |
+
<center><p><h3>Setting and examples</h></p></center>
|
58 |
+
|
59 |
+
**Embeddings**
|
60 |
+
|
61 |
+
<a href="https://huggingface.co/datasets/gsdf/EasyNegative">EasyNegative</a>
|
62 |
+
|
63 |
+
<a href="https://huggingface.co/datasets/Nerfgun3/bad_prompt">bad_prompt_version2</a>
|
64 |
+
|
65 |
+
|
66 |
+
**[Softer]**
|
67 |
+
```
|
68 |
+
Sampler: Euler a
|
69 |
+
Steps: 40
|
70 |
+
Hires fix: x2
|
71 |
+
Upscaler: Latent
|
72 |
+
Hires steps: 30
|
73 |
+
Denoising strength: 0.5
|
74 |
+
CFG scale: 8
|
75 |
+
Clip skip: 2
|
76 |
+
```
|
77 |
+
|
78 |
+
<div class=row>
|
79 |
+
<div class=column2><center><img src=https://huggingface.co/mekabu/MagicalMix_v2/resolve/main/Sample/SampleA_01.png></center></div>
|
80 |
+
<div class=column2><center><img src=https://huggingface.co/mekabu/MagicalMix_v2/resolve/main/Sample/SampleA_02.png></center></div>
|
81 |
+
<div class=column2><center><img src=https://huggingface.co/mekabu/MagicalMix_v2/resolve/main/Sample/SampleA_03.png></center></div>
|
82 |
+
</div>
|
83 |
+
|
84 |
+
**[Anime]**
|
85 |
+
```
|
86 |
+
Sampler: DPM++ 2M Karras
|
87 |
+
Steps: 25
|
88 |
+
Hires fix: x2
|
89 |
+
Upscaler: R-ESRGAN 4x++ Anime6B
|
90 |
+
Hires steps: 20
|
91 |
+
Denoising strength: 0.5
|
92 |
+
CFG scale: 8
|
93 |
+
Clip skip: 2
|
94 |
+
```
|
95 |
+
|
96 |
+
<div class=row>
|
97 |
+
<div class=column2><center><img src=https://huggingface.co/mekabu/MagicalMix_v2/resolve/main/Sample/SampleB_01.png></center></div>
|
98 |
+
<div class=column2><center><img src=https://huggingface.co/mekabu/MagicalMix_v2/resolve/main/Sample/SampleB_02.png></center></div>
|
99 |
+
<div class=column2><center><img src=https://huggingface.co/mekabu/MagicalMix_v2/resolve/main/Sample/SampleB_03.png></center></div>
|
100 |
+
</div>
|
101 |
+
|
102 |
+
<br>
|
103 |
+
|
104 |
+
\*\***Any other good presets out there, let me know!****
|
105 |
+
|
106 |
+
<center><p><h3>Model recipe</h></p></center>
|
107 |
+
|
108 |
+
|No.|Interpolation Method|Model_A|Model_B|Tertiary Model|Output|
|
109 |
+
|:---:|:---:|:---:|:---:|:---:|:---:|
|
110 |
+
|1|Weighted sum @ 0.45|Basil_mix_fixed|uenomigiDB_v1|-|Bronze1|
|
111 |
+
|2|Weighted sum @ 0.7|Bronze1|ligneClaireAnime_v1|-|Bronze2|
|
112 |
+
|3|Weighted sum @ 0.6|Bronze2|abysshell_ver3|-|Bronze3|
|
113 |
+
|4|Add Difference @ 0.75|Bronze3|dalcefoHitoria_v3|EasyNegative|**Silver**|
|
114 |
+
|
115 |
+
|Model_A|Model_B|Weight|Output|
|
116 |
+
|:---:|:---:|:---:|:---:|
|
117 |
+
|MagicalMix_v1|Silver|SMOOTHSTEP|MagicalMix_v2|
|