NebulaeWis commited on
Commit
bbf7b99
1 Parent(s): 5e37cef

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +269 -0
README.md ADDED
@@ -0,0 +1,269 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: fair-ai-public-license-1.0-sd
4
+ license_link: https://freedevproject.org/faipl-1.0-sd/
5
+ language:
6
+ - en
7
+ base_model:
8
+ - Laxhar/noobai-XL-Vpred-0.65
9
+ pipeline_tag: text-to-image
10
+ tags:
11
+ - safetensors
12
+ - diffusers
13
+ - stable-diffusion
14
+ - stable-diffusion-xl
15
+ - art
16
+ - not-for-all-audiences
17
+ library_name: diffusers
18
+ ---
19
+
20
+ <h1 align="center"><strong style="font-size: 48px;">NoobAI XL V-Pred 0.75</strong></h1>
21
+
22
+ # Model Introduction
23
+
24
+ This image generation model, based on Laxhar/noobai-XL_v1.0, leverages full Danbooru and e621 datasets with native tags and natural language captioning.
25
+
26
+ Implemented as a v-prediction model (distinct from eps-prediction), it requires specific parameter configurations - detailed in following sections.
27
+
28
+ Special thanks to my teammate euge for the coding work, and we're grateful for the technical support from many helpful community members.
29
+
30
+ # ⚠️ IMPORTANT NOTICE ⚠️
31
+
32
+ ## **THIS MODEL WORKS DIFFERENT FROM EPS MODELS!**
33
+
34
+ ## **PLEASE READ THE GUIDE CAREFULLY!**
35
+
36
+ ## Model Details
37
+
38
+ - **Developed by**: [Laxhar Lab](https://huggingface.co/Laxhar)
39
+ - **Model Type**: Diffusion-based text-to-image generative model
40
+ - **Fine-tuned from**: Laxhar/noobai-XL_v1.0
41
+ - **Sponsored by from**: [Lanyun Cloud](https://cloud.lanyun.net)
42
+
43
+ ---
44
+
45
+ # How to Use the Model.
46
+
47
+ ## Method I: [reForge](https://github.com/Panchovix/stable-diffusion-webui-reForge/tree/dev_upstream)
48
+
49
+ 1. (If you haven't installed reForge) Install reForge by following the instructions in the repository;
50
+
51
+ 2. Launch WebUI and use the model as usual!
52
+
53
+ ## Method II: [ComfyUI](https://github.com/comfyanonymous/ComfyUI)
54
+
55
+ SAMLPLE with NODES
56
+
57
+ [comfy_ui_workflow_sample](/Laxhar/noobai-XL-Vpred-0.5/blob/main/comfy_ui_workflow_sample.png)
58
+
59
+
60
+ ## Method III: [WebUI](https://github.com/AUTOMATIC1111/stable-diffusion-webui)
61
+
62
+ Note that dev branch is not stable and **may contain bugs**.
63
+
64
+ 1. (If you haven't installed WebUI) Install WebUI by following the instructions in the repository. For simp
65
+ 2. Switch to `dev` branch:
66
+
67
+ ```bash
68
+ git switch dev
69
+ ```
70
+
71
+ 3. Pull latest updates:
72
+
73
+ ```bash
74
+ git pull
75
+ ```
76
+
77
+ 4. Launch WebUI and use the model as usual!
78
+
79
+ ## Method IV: [Diffusers](https://huggingface.co/docs/diffusers/en/index)
80
+
81
+ ```python
82
+ import torch
83
+ from diffusers import StableDiffusionXLPipeline
84
+ from diffusers import EulerDiscreteScheduler
85
+
86
+ ckpt_path = "/path/to/model.safetensors"
87
+ pipe = StableDiffusionXLPipeline.from_single_file(
88
+ ckpt_path,
89
+ use_safetensors=True,
90
+ torch_dtype=torch.float16,
91
+ )
92
+ scheduler_args = {"prediction_type": "v_prediction", "rescale_betas_zero_snr": True}
93
+ pipe.scheduler = EulerDiscreteScheduler.from_config(pipe.scheduler.config, **scheduler_args)
94
+ pipe.enable_xformers_memory_efficient_attention()
95
+ pipe = pipe.to("cuda")
96
+
97
+ prompt = """masterpiece, best quality,artist:john_kafka,artist:nixeu,artist:quasarcake, chromatic aberration, film grain, horror \(theme\), limited palette, x-shaped pupils, high contrast, color contrast, cold colors, arlecchino \(genshin impact\), black theme, gritty, graphite \(medium\)"""
98
+ negative_prompt = "nsfw, worst quality, old, early, low quality, lowres, signature, username, logo, bad hands, mutated hands, mammal, anthro, furry, ambiguous form, feral, semi-anthro"
99
+
100
+ image = pipe(
101
+ prompt=prompt,
102
+ negative_prompt=negative_prompt,
103
+ width=832,
104
+ height=1216,
105
+ num_inference_steps=28,
106
+ guidance_scale=5,
107
+ generator=torch.Generator().manual_seed(42),
108
+ ).images[0]
109
+
110
+ image.save("output.png")
111
+ ```
112
+
113
+
114
+ **Note**: Please make sure Git is installed and environment is properly configured on your machine.
115
+
116
+ ---
117
+
118
+ # Recommended Settings
119
+
120
+ ## Parameters
121
+
122
+ - CFG: 4 ~ 5
123
+ - Steps: 28 ~ 35
124
+ - Sampling Method: **Euler** (⚠️ Other samplers will not work properly)
125
+ - Resolution: Total area around 1024x1024. Best to choose from: 768x1344, **832x1216**, 896x1152, 1024x1024, 1152x896, 1216x832, 1344x768
126
+
127
+ ## Prompts
128
+
129
+ - Prompt Prefix:
130
+
131
+ ```
132
+ masterpiece, best quality, newest, absurdres, highres, safe,
133
+ ```
134
+
135
+ - Negative Prompt:
136
+
137
+ ```
138
+ nsfw, worst quality, old, early, low quality, lowres, signature, username, logo, bad hands, mutated hands, mammal, anthro, furry, ambiguous form, feral, semi-anthro
139
+ ```
140
+
141
+ # Usage Guidelines
142
+
143
+ ## Caption
144
+
145
+ ```
146
+ <1girl/1boy/1other/...>, <character>, <series>, <artists>, <special tags>, <general tags>, <other tags>
147
+ ```
148
+
149
+ ## Quality Tags
150
+
151
+ For quality tags, we evaluated image popularity through the following process:
152
+
153
+ - Data normalization based on various sources and ratings.
154
+ - Application of time-based decay coefficients according to date recency.
155
+ - Ranking of images within the entire dataset based on this processing.
156
+
157
+ Our ultimate goal is to ensure that quality tags effectively track user preferences in recent years.
158
+
159
+ | Percentile Range | Quality Tags |
160
+ | :--------------- | :------------- |
161
+ | > 95th | masterpiece |
162
+ | > 85th, <= 95th | best quality |
163
+ | > 60th, <= 85th | good quality |
164
+ | > 30th, <= 60th | normal quality |
165
+ | <= 30th | worst quality |
166
+
167
+ ## Aesthetic Tags
168
+
169
+ | Tag | Description |
170
+ | :-------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
171
+ | very awa | Top 5% of images in terms of aesthetic score by [waifu-scorer](https://huggingface.co/Eugeoter/waifu-scorer-v4-beta) |
172
+ | worst aesthetic | All the bottom 5% of images in terms of aesthetic score by [waifu-scorer](https://huggingface.co/Eugeoter/waifu-scorer-v4-beta) and [aesthetic-shadow-v2](https://huggingface.co/shadowlilac/aesthetic-shadow-v2) |
173
+ | ... | ... |
174
+
175
+ ## Date Tags
176
+
177
+ There are two types of date tags: **year tags** and **period tags**. For year tags, use `year xxxx` format, i.e., `year 2021`. For period tags, please refer to the following table:
178
+
179
+ | Year Range | Period tag |
180
+ | :--------- | :--------- |
181
+ | 2005-2010 | old |
182
+ | 2011-2014 | early |
183
+ | 2014-2017 | mid |
184
+ | 2018-2020 | recent |
185
+ | 2021-2024 | newest |
186
+
187
+ ## Dataset
188
+
189
+ - The latest Danbooru images up to the training date (approximately before 2024-10-23)
190
+ - E621 images [e621-2024-webp-4Mpixel](https://huggingface.co/datasets/NebulaeWis/e621-2024-webp-4Mpixel) dataset on Hugging Face
191
+
192
+ **Communication**
193
+
194
+ - **QQ Groups:**
195
+
196
+ - 875042008
197
+ - 914818692
198
+ - 635772191
199
+
200
+ - **Discord:** [Laxhar Dream Lab SDXL NOOB](https://discord.com/invite/DKnFjKEEvH)
201
+
202
+ **How to train a LoRA on v-pred SDXL model**
203
+
204
+ A tutorial is intended for LoRA trainers based on sd-scripts.
205
+
206
+ article link: https://civitai.com/articles/8723
207
+
208
+ **Utility Tool**
209
+
210
+ Laxhar Lab is training a dedicated ControlNet model for NoobXL, and the models are being released progressively. So far, the normal, depth, and canny have been released.
211
+
212
+ Model link: https://civitai.com/models/929685
213
+
214
+ # Model License
215
+
216
+ This model's license inherits from https://huggingface.co/OnomaAIResearch/Illustrious-xl-early-release-v0 fair-ai-public-license-1.0-sd and adds the following terms. Any use of this model and its variants is bound by this license.
217
+
218
+ ## I. Usage Restrictions
219
+
220
+ - Prohibited use for harmful, malicious, or illegal activities, including but not limited to harassment, threats, and spreading misinformation.
221
+ - Prohibited generation of unethical or offensive content.
222
+ - Prohibited violation of laws and regulations in the user's jurisdiction.
223
+
224
+ ## II. Commercial Prohibition
225
+
226
+ We prohibit any form of commercialization, including but not limited to monetization or commercial use of the model, derivative models, or model-generated products.
227
+
228
+ ## III. Open Source Community
229
+
230
+ To foster a thriving open-source community,users MUST comply with the following requirements:
231
+
232
+ - Open source derivative models, merged models, LoRAs, and products based on the above models.
233
+ - Share work details such as synthesis formulas, prompts, and workflows.
234
+ - Follow the fair-ai-public-license to ensure derivative works remain open source.
235
+
236
+ ## IV. Disclaimer
237
+
238
+ Generated models may produce unexpected or harmful outputs. Users must assume all risks and potential consequences of usage.
239
+
240
+ # Participants and Contributors
241
+
242
+ ## Participants
243
+
244
+ - **L_A_X:** [Civitai](https://civitai.com/user/L_A_X) | [Liblib.art](https://www.liblib.art/userpage/9e1b16538b9657f2a737e9c2c6ebfa69) | [Huggingface](https://huggingface.co/LAXMAYDAY)
245
+ - **li_li:** [Civitai](https://civitai.com/user/li_li) | [Huggingface](https://huggingface.co/heziiiii)
246
+ - **nebulae:** [Civitai](https://civitai.com/user/kitarz) | [Huggingface](https://huggingface.co/NebulaeWis)
247
+ - **Chenkin:** [Civitai](https://civitai.com/user/Chenkin) | [Huggingface](https://huggingface.co/windsingai)
248
+ - **Euge:** [Civitai](https://civitai.com/user/Euge_) | [Huggingface](https://huggingface.co/Eugeoter) | [Github](https://github.com/Eugeoter)
249
+
250
+ ## Contributors
251
+
252
+ - **Narugo1992**: Thanks to [narugo1992](https://github.com/narugo1992) and the [deepghs](https://huggingface.co/deepghs) team for open-sourcing various training sets, image processing tools, and models.
253
+
254
+ - **Mikubill**: Thanks to [Mikubill](https://github.com/Mikubill) for the [Naifu](https://github.com/Mikubill/naifu) trainer.
255
+
256
+ - **Onommai**: Thanks to [OnommAI](https://onomaai.com/) for open-sourcing a powerful base model.
257
+
258
+ - **V-Prediction**: Thanks to the following individuals for their detailed instructions and experiments.
259
+
260
+ - adsfssdf
261
+ - [bluvoll](https://civitai.com/user/bluvoll)
262
+ - [bvhari](https://github.com/bvhari)
263
+ - [catboxanon](https://github.com/catboxanon)
264
+ - [parsee-mizuhashi](https://huggingface.co/parsee-mizuhashi)
265
+ - [very-aesthetic](https://github.com/very-aesthetic)
266
+ - [momoura](https://civitai.com/user/momoura)
267
+ - madmanfourohfour
268
+
269
+ - **Community**: [aria1th261](https://civitai.com/user/aria1th261), [neggles](https://github.com/neggles/neurosis), [sdtana](https://huggingface.co/sdtana), [chewing](https://huggingface.co/chewing), [irldoggo](https://github.com/irldoggo), [reoe](https://huggingface.co/reoe), [kblueleaf](https://civitai.com/user/kblueleaf), [Yidhar](https://github.com/Yidhar), ageless, 白玲可, Creeper, KaerMorh, 吟游诗人, SeASnAkE, [zwh20081](https://civitai.com/user/zwh20081), Wenaka⁧~喵, 稀里哗啦, 幸运二副, 昨日の約, 445, [EBIX](https://civitai.com/user/EBIX), [Sopp](https://huggingface.co/goyishsoyish), [Y_X](https://civitai.com/user/Y_X), [Minthybasis](https://civitai.com/user/Minthybasis), [Rakosz](https://civitai.com/user/Rakosz)