rityak commited on
Commit
79c1952
·
verified ·
1 Parent(s): 9f388d8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +173 -14
README.md CHANGED
@@ -13,25 +13,184 @@ base_model:
13
  - cagliostrolab/animagine-xl-3.1
14
  ---
15
 
16
- # Animagus XL 1.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
- **Animagus** is an anime-themed finetuned model built on top of Stable Diffusion XL, created over the Animagine XL series. The model merges over 20 specialized checkpoints (including various versions of Animagine, babesByStableYogi, bigasp, juggernaut, tofuANIMEBASEMODEL, kohakuXLZeta, starryXL, hassakuXL, animeIllustDiffusion, RaeDiffusion-XL, UrangDiffusion, clandestine, and ranimeXL) using multistage merging methods (`karcher_mean`, `ties_sum` and `task_arithmetic`), and then finetuned on carefully selected illustration datasets. This results in more stable outputs, accurate anatomy, and rich colors, while preserving the “anime” style.
19
-
20
- ![image/png](https://huggingface.co/rityak/animagus/resolve/main/img.png)
21
-
22
- ## Get Animagus XL 1.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
  - **Civitai hub**
25
- Explore model details, community examples, and usage tips on Civitai:
26
- https://civitai.com/models/1783095
27
 
28
- - **Download untrained merge (Animagus XL Zero)**
29
- A raw merge of all source checkpoints before fine-tuning:
30
- https://huggingface.co/rityak/animagus/resolve/main/animagus-zero.safetensors?download=true
31
 
32
- - **Download fine-tuned model (Animagus XL 1.0)**
33
- The final anime-optimized checkpoint after fine-tuning:
34
- https://huggingface.co/rityak/animagus/resolve/main/animagus.safetensors?download=true
35
 
36
  ## Model Details
37
 
 
13
  - cagliostrolab/animagine-xl-3.1
14
  ---
15
 
16
+ <style>
17
+ .container {
18
+ display: flex;
19
+ gap: 2rem;
20
+ align-items: flex-start;
21
+ }
22
+ .image-wrapper,
23
+ .details {
24
+ flex: 1 1 50%;
25
+ }
26
+ .image-wrapper {
27
+ display: flex;
28
+ justify-content: center;
29
+ align-items: center;
30
+ }
31
+ .model-image {
32
+ width: 100%;
33
+ max-width: 500px;
34
+ min-width: 300px;
35
+ border-radius: 8px;
36
+ box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
37
+ }
38
+ .details h1 {
39
+ margin-top: 0;
40
+ font-size: 2rem;
41
+ color: #fff;
42
+ }
43
+ .details .description {
44
+ margin: 0.5rem 0 1.5rem;
45
+ line-height: 1.5;
46
+ color: #ccc;
47
+ }
48
+ .features-list {
49
+ list-style: none;
50
+ padding: 0;
51
+ margin: 0 0 1.5rem;
52
+ }
53
+ .features-list li {
54
+ display: flex;
55
+ align-items: center;
56
+ margin-bottom: 0.5rem;
57
+ font-size: 1rem;
58
+ color: #fff;
59
+ }
60
+ .features-list .icon {
61
+ margin-right: 0.6rem;
62
+ font-size: 1.2rem;
63
+ }
64
+ .badge-list {
65
+ list-style: none;
66
+ padding: 0;
67
+ margin: 0;
68
+ display: flex;
69
+ flex-wrap: wrap;
70
+ row-gap: 0.25rem;
71
+ column-gap: 0.5rem;
72
+ }
73
+ .badge-list li {
74
+ margin: 0;
75
+ }
76
+ .badge-btn {
77
+ display: inline-flex;
78
+ align-items: center;
79
+ height: 28px;
80
+ padding: 0 10px;
81
+ font-size: 14px;
82
+ font-weight: 500;
83
+ color: #fff;
84
+ text-decoration: none;
85
+ border-radius: 4px;
86
+ white-space: nowrap;
87
+ transition: opacity 0.2s, transform 0.1s;
88
+ }
89
+ .badge-btn .btn-icon {
90
+ width: 16px;
91
+ height: 16px;
92
+ margin-right: 6px;
93
+ }
94
+ .badge-btn:hover {
95
+ opacity: 0.85;
96
+ transform: translateY(-1px);
97
+ }
98
+ .badge-btn.civitai {
99
+ background-color: #2975fa8d;
100
+ }
101
+ .badge-btn.hf {
102
+ background-color: #ff66008d;
103
+ }
104
 
105
+ @media (max-width: 700px) {
106
+ .container {
107
+ flex-direction: column;
108
+ align-items: center;
109
+ }
110
+ .image-wrapper,
111
+ .details {
112
+ flex: unset;
113
+ width: 100%;
114
+ }
115
+ .model-image {
116
+ width: 90%;
117
+ max-width: 500px;
118
+ min-width: auto;
119
+ margin-bottom: 1rem;
120
+ }
121
+ }
122
+ </style>
123
+ <div class="container">
124
+ <div class="image-wrapper">
125
+ <img
126
+ src="https://huggingface.co/rityak/animagus/resolve/main/img.png"
127
+ alt="Animagus XL 1.0 Example"
128
+ class="model-image"
129
+ />
130
+ </div>
131
+ <div class="details">
132
+ <h1>Animagus XL 1.0</h1>
133
+ <p class="description">
134
+ <strong>Animagus</strong> is an anime-themed finetuned model built on top of Stable Diffusion XL, created over the Animagine XL series. The model merges over 20 specialized checkpoints (including various versions of Animagine, babesByStableYogi, bigasp, juggernaut, tofuANIMEBASEMODEL, kohakuXLZeta, starryXL, hassakuXL, animeIllustDiffusion, RaeDiffusion-XL, UrangDiffusion, clandestine, and ranimeXL) using multistage merging methods (<code>karcher_mean</code>, <code>ties_sum</code> and <code>task_arithmetic</code>), and then finetuned on carefully selected illustration datasets. This results in more stable outputs, accurate anatomy, and rich colors, while preserving the “anime” style.
135
+ </p>
136
+ <ul class="badge-list">
137
+ <li>
138
+ <a
139
+ href="https://civitai.com/models/1783095"
140
+ target="_blank"
141
+ class="badge-btn civitai"
142
+ >
143
+ <img
144
+ src="https://civitai.com/favicon-blue.ico"
145
+ alt="CivitAI"
146
+ class="btn-icon"
147
+ />
148
+ View on CivitAI
149
+ </a>
150
+ </li>
151
+ <li>
152
+ <a
153
+ href="https://huggingface.co/rityak/animagus/resolve/main/animagus.safetensors?download=true"
154
+ target="_blank"
155
+ class="badge-btn hf"
156
+ >
157
+ <img
158
+ src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg"
159
+ alt="Hugging Face"
160
+ class="btn-icon"
161
+ />
162
+ Download Animagus XL 1.0
163
+ </a>
164
+ </li>
165
+ <li>
166
+ <a
167
+ href="https://huggingface.co/rityak/animagus/resolve/main/animagus-zero.safetensors?download=true"
168
+ target="_blank"
169
+ class="badge-btn hf"
170
+ >
171
+ <img
172
+ src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg"
173
+ alt="Hugging Face"
174
+ class="btn-icon"
175
+ />
176
+ Download Animagus XL Zero
177
+ </a>
178
+ </li>
179
+ </ul>
180
+ </div>
181
+ </div>
182
 
183
  - **Civitai hub**
184
+ Explore model details, community examples, and usage tips:
185
+ [View on CivitAI](https://civitai.com/models/1783095)
186
 
187
+ - **Animagus XL 1.0 (fine‑tuned)**
188
+ The final anime‑optimized model _after_ fine‑tuning on curated illustration datasets.
189
+ [Download Animagus XL 1.0](https://huggingface.co/rityak/animagus/resolve/main/animagus.safetensors?download=true)
190
 
191
+ - **Animagus XL Zero (raw merge)**
192
+ A direct merge of all source checkpoints _before_ finetuning.
193
+ [Download Animagus XL Zero](https://huggingface.co/rityak/animagus/resolve/main/animagus-zero.safetensors?download=true)
194
 
195
  ## Model Details
196