rityak commited on
Commit
1a4cb8c
·
verified ·
1 Parent(s): 52682c1

Upload README.MD

Browse files
Files changed (1) hide show
  1. README.MD +196 -0
README.MD ADDED
@@ -0,0 +1,196 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ pipeline_tag: text-to-image
5
+ library_name: diffusers
6
+ tags:
7
+ - text-to-image
8
+ - stable-diffusion
9
+ - safetensors
10
+ - anime
11
+ - merge
12
+ license: openrail++
13
+ base_model:
14
+ - neta-art/Neta-Lumina
15
+ - hanzogak/comradeshipLUv2
16
+ ---
17
+
18
+ <style>
19
+ .container {
20
+ display: flex;
21
+ gap: 2rem;
22
+ align-items: flex-start;
23
+ }
24
+ .image-wrapper,
25
+ .details {
26
+ flex: 1 1 50%;
27
+ }
28
+ .image-wrapper {
29
+ display: flex;
30
+ justify-content: center;
31
+ align-items: center;
32
+ }
33
+ .model-image {
34
+ width: 100%;
35
+ max-width: 500px;
36
+ min-width: 300px;
37
+ border-radius: 8px;
38
+ box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
39
+ }
40
+ .details h1 {
41
+ margin-top: 0;
42
+ font-size: 2rem;
43
+ color: #fff;
44
+ }
45
+ .details .description {
46
+ margin: 0.5rem 0 1.5rem;
47
+ line-height: 1.5;
48
+ color: #ccc;
49
+ }
50
+ .badge-list {
51
+ list-style: none;
52
+ padding: 0;
53
+ margin: 0;
54
+ display: flex;
55
+ flex-wrap: wrap;
56
+ row-gap: 0.25rem;
57
+ column-gap: 0.5rem;
58
+ }
59
+ .badge-list li {
60
+ margin: 0;
61
+ }
62
+ .badge-btn {
63
+ display: inline-flex;
64
+ align-items: center;
65
+ height: 28px;
66
+ padding: 0 10px;
67
+ font-size: 14px;
68
+ font-weight: 500;
69
+ color: #fff;
70
+ text-decoration: none;
71
+ border-radius: 4px;
72
+ white-space: nowrap;
73
+ transition: opacity 0.2s, transform 0.1s;
74
+ }
75
+ .badge-btn .btn-icon {
76
+ width: 16px;
77
+ height: 16px;
78
+ margin-right: 6px;
79
+ }
80
+ .badge-btn:hover {
81
+ opacity: 0.85;
82
+ transform: translateY(-1px);
83
+ }
84
+ .badge-btn.hf {
85
+ background-color: #ff66008d;
86
+ }
87
+ @media (max-width: 700px) {
88
+ .container {
89
+ flex-direction: column;
90
+ align-items: center;
91
+ }
92
+ .image-wrapper,
93
+ .details {
94
+ flex: unset;
95
+ width: 100%;
96
+ }
97
+ .model-image {
98
+ width: 90%;
99
+ max-width: 500px;
100
+ min-width: auto;
101
+ margin-bottom: 1rem;
102
+ }
103
+ }
104
+ </style>
105
+
106
+ <div class="container">
107
+ <div class="image-wrapper">
108
+ <!-- Replace with your own example image -->
109
+ <img
110
+ src="https://huggingface.co/rityak/LumiNetaMix/resolve/main/cover.png"
111
+ alt="Neta Lumina Custom Merge Example"
112
+ class="model-image"
113
+ />
114
+ </div>
115
+ <div class="details">
116
+ <h1>Neta Lumina Custom Merge v1.0</h1>
117
+ <p class="description">
118
+ <strong>Neta Lumina Custom Merge</strong> builds on the open-source
119
+ <a href="https://huggingface.co/neta-art/Neta-Lumina" target="_blank">Neta‑Lumina</a>
120
+ checkpoint using a custom <code>karcher_mean</code> merge. It preserves the original anime‑style aesthetic
121
+ while delivering enhanced NSFW support and slight gains in generation quality—especially with simple
122
+ and Danbooru tags.
123
+ </p>
124
+ <ul class="badge-list">
125
+ <li>
126
+ <a
127
+ href="https://huggingface.co/your-username/your-repo/resolve/main/model.safetensors?download=true"
128
+ target="_blank"
129
+ class="badge-btn hf"
130
+ >
131
+ <img
132
+ src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg"
133
+ alt="Hugging Face"
134
+ class="btn-icon"
135
+ />
136
+ Download Model
137
+ </a>
138
+ </li>
139
+ <li>
140
+ <a
141
+ href="https://neta.art/blog/neta_lumina_prompt_book/"
142
+ target="_blank"
143
+ class="badge-btn"
144
+ >
145
+ Prompt Book
146
+ </a>
147
+ </li>
148
+ <li>
149
+ <a
150
+ href="https://huggingface.co/api/resolve-cache/models/neta-art/Neta-Lumina/d1d432a44a84f160d9e8791f704e0d3895ae6ae1/lumina_workflow.json"
151
+ target="_blank"
152
+ class="badge-btn hf"
153
+ >
154
+ ComfyUI Workflow
155
+ </a>
156
+ </li>
157
+ </ul>
158
+ </div>
159
+ </div>
160
+
161
+ - **Original Model**
162
+ Building on the open-source [Neta‑Lumina](https://huggingface.co/neta-art/Neta-Lumina) checkpoint.
163
+ - **Prompt Book**
164
+ Full prompt guidelines and tag list: [neta_lumina_prompt_book](https://neta.art/blog/neta_lumina_prompt_book/)
165
+ - **ComfyUI Workflow**
166
+ Pre-made workflow for ComfyUI:
167
+ [Download JSON](https://huggingface.co/api/resolve-cache/models/neta-art/Neta-Lumina/d1d432a44a84f160d9e8791f704e0d3895ae6ae1/lumina_workflow.json)
168
+
169
+ ## Model Details
170
+
171
+ - **Model type**: diffusion-based text-to-image
172
+ - **Base checkpoint**: neta-art/Neta-Lumina
173
+ - **Merge method**: `karcher_mean` custom merge
174
+
175
+ ## Key Improvements
176
+
177
+ - **Enhanced NSFW support**
178
+ - **Slight quality gains** with both simple and Danbooru prompt tags
179
+ - **Maintains original anime aesthetic** and multilingual tag comprehension
180
+
181
+ - **Recommended Settings**
182
+
183
+ - Sampler: `res_multistep`
184
+ - Scheduler: `linear_quadratic`
185
+ - Steps: 30
186
+ - CFG Scale: 4.0 – 5.5
187
+ - Resolution: ≥ 1024×1024
188
+
189
+ ## Downloads
190
+
191
+ - **All‑in‑One (AIO) Version**
192
+ [Download the AIO model (UNET + Text Encoder + VAE)](https://huggingface.co/rityak/LumiNetaMix/resolve/main/LumiNetaMix.safetensors?download=true)
193
+
194
+ - **Separate Components**
195
+ - **UNET checkpoint**: [Download UNET](https://huggingface.co/rityak/LumiNetaMix/resolve/main/LumiNetaMix_unet.safetensors?download=true)
196
+ - **Text Encoder**: [Download Text Encoder](https://huggingface.co/rityak/LumiNetaMix/resolve/main/LumiNetaMix_gemma2_2b.safetensors?download=true)