Update README.md
Browse files
README.md
CHANGED
@@ -20,84 +20,172 @@ tags:
|
|
20 |
- hassaku
|
21 |
---
|
22 |
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
-
|
26 |
-
|
27 |
-
## Model Description
|
28 |
-
|
29 |
-
The FeMix_HassakuXL series is built on a foundation and enhanced with the FeMix blending system, which combines two distinct styles, Style A and Style B, in various ratios to create models with different characteristics.
|
30 |
-
|
31 |
-
* **Style A:** Provides a stable base with great lighting and composition. LoRA friendly.
|
32 |
-
* **Style B:** Represents a more experimental and stylized approach, potentially with artifacts.
|
33 |
-
|
34 |
-
### Available Model Variants
|
35 |
-
|
36 |
-
This repository includes the following model variants, each representing a different FeMix blend:
|
37 |
-
|
38 |
-
* **FeMix_HassakuXL_A9B1**: (90% Style A, 10% Style B) - Provides quality results
|
39 |
-
* **FeMix_HassakuXL_A8B2**: (80% Style A, 20% Style B) - Provides quality results
|
40 |
-
* **FeMix_HassakuXL_A5B5**: (50% Style A, 50% Style B) - Great all around for general use
|
41 |
-
* **FeMix_HassakuXL_A1B9**: (10% Style A, 90% Style B) - Recommended for advanced users who understands how to deal with Style B's artifacts
|
42 |
-
|
43 |
-
These model variants also has a variation with CLIP and VAE from HassakuXLv2 to provide better visual quality.
|
44 |
-
* **FeMix_HassakuXL_A9B1_v2CLIPVAE**: (90% Style A, 10% Style B) - Provides quality results
|
45 |
-
* **FeMix_HassakuXL_A8B2_v2CLIPVAE**: (80% Style A, 20% Style B) - Provides quality results
|
46 |
-
* **FeMix_HassakuXL_A5B5_v2CLIPVAE**: (50% Style A, 50% Style B) - Great all around for general use
|
47 |
-
* **FeMix_HassakuXL_A1B9_v2CLIPVAE**: (10% Style A, 90% Style B) - Recommended for advanced users who understands how to deal with Style B's artifacts
|
48 |
-
|
49 |
-
## Usage
|
50 |
-
|
51 |
-
### Recommended Settings
|
52 |
-
|
53 |
-
* **Scheduler:** DPM++ 2M Karras, Euler a
|
54 |
-
* **Sampling Steps:** 20-30
|
55 |
-
* **Resolution:** SDXL Recommended Resolutions (e.g., 1024x1024, 832x1216)
|
56 |
-
* **Clip Skip:** 2
|
57 |
-
|
58 |
-
### Example Prompts
|
59 |
-
|
60 |
-
* **Positive:** `(masterpiece, best quality, detailed), 1girl, long hair, blue eyes`
|
61 |
-
* **Negative:** `(worst quality, bad quality:1.4), (monochrome), greyscale, skin spots, acne, skin blemishes, age spot, watermarks, signature`
|
62 |
-
|
63 |
-
### LoRA Usage
|
64 |
-
|
65 |
-
The Style A blends are particularly well-suited for use with LoRA models. Experiment with different LoRAs to further customize the style and details of your generations.
|
66 |
-
|
67 |
-
### Code Example
|
68 |
-
|
69 |
-
```python
|
70 |
-
from diffusers import StableDiffusionXLPipeline
|
71 |
-
import torch
|
72 |
-
|
73 |
-
model_id = "6chan/FeMix_HassakuXL"
|
74 |
-
pipe = StableDiffusionXLPipeline.from_pretrained(model_id, torch_dtype=torch.float16, variant="fp16", use_safetensors=True).to("cuda")
|
75 |
-
|
76 |
-
prompt = "(masterpiece, best quality, detailed), 1girl, long hair, blue eyes"
|
77 |
-
negative_prompt = "(worst quality, bad quality:1.4), (monochrome), greyscale, skin spots, acne, skin blemishes, age spot, watermarks, signature"
|
78 |
-
|
79 |
-
image = pipe(prompt=prompt, negative_prompt=negative_prompt).images[0]
|
80 |
-
image.save("generated_image.png")
|
81 |
```
|
82 |
|
83 |
-
|
84 |
-
|
85 |
-
Style B blends (especially A1B9) can produce artifacts and require careful prompting and post-processing.
|
86 |
-
|
87 |
-
LoRA effectiveness might vary depending on the blend ratio.
|
88 |
-
|
89 |
-
This model is primarily designed for generating anime-style images.
|
90 |
-
|
91 |
-
### License
|
92 |
-
|
93 |
-
This model is released under the Fair AI Public License 1.0-SD. See the LICENSE file for more details.
|
94 |
|
95 |
-
|
|
|
|
|
96 |
|
97 |
-
|
|
|
|
|
98 |
|
99 |
-
|
100 |
|
101 |
-
|
|
|
|
|
|
|
102 |
|
103 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
- hassaku
|
21 |
---
|
22 |
|
23 |
+
<style>
|
24 |
+
body {
|
25 |
+
display: flex;
|
26 |
+
align-items: center;
|
27 |
+
justify-content: center;
|
28 |
+
height: 100vh;
|
29 |
+
margin: 0;
|
30 |
+
font-family: Arial, sans-serif;
|
31 |
+
background-color: #f4f4f9;
|
32 |
+
overflow: auto;
|
33 |
+
}
|
34 |
+
|
35 |
+
.container {
|
36 |
+
display: flex;
|
37 |
+
flex-direction: column;
|
38 |
+
align-items: center;
|
39 |
+
justify-content: center;
|
40 |
+
width: 100%;
|
41 |
+
padding: 20px;
|
42 |
+
}
|
43 |
+
|
44 |
+
.title-container {
|
45 |
+
display: flex;
|
46 |
+
flex-direction: column;
|
47 |
+
justify-content: center;
|
48 |
+
align-items: center;
|
49 |
+
padding: 1em;
|
50 |
+
border-radius: 10px;
|
51 |
+
}
|
52 |
+
|
53 |
+
.title {
|
54 |
+
font-size: 3em;
|
55 |
+
font-family: 'Montserrat', sans-serif;
|
56 |
+
text-align: center;
|
57 |
+
font-weight: bold;
|
58 |
+
}
|
59 |
+
|
60 |
+
.title span {
|
61 |
+
background: -webkit-linear-gradient(45deg, #7E57C2, #5C6BC0, #42A5F5);
|
62 |
+
-webkit-background-clip: text;
|
63 |
+
-webkit-text-fill-color: transparent;
|
64 |
+
}
|
65 |
+
|
66 |
+
.gallery {
|
67 |
+
display: grid;
|
68 |
+
grid-template-columns: repeat(3, 1fr);
|
69 |
+
gap: 10px;
|
70 |
+
}
|
71 |
+
|
72 |
+
.gallery img {
|
73 |
+
width: 100%;
|
74 |
+
height: auto;
|
75 |
+
margin-top: 0px;
|
76 |
+
margin-bottom: 0px;
|
77 |
+
border-radius: 10px;
|
78 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
79 |
+
transition: transform 0.3s;
|
80 |
+
}
|
81 |
+
|
82 |
+
.gallery img:hover {
|
83 |
+
transform: scale(1.05);
|
84 |
+
}
|
85 |
+
|
86 |
+
.note {
|
87 |
+
font-size: 1em;
|
88 |
+
opacity: 50%;
|
89 |
+
text-align: center;
|
90 |
+
margin-top: 20px;
|
91 |
+
color: #555;
|
92 |
+
}
|
93 |
+
</style>
|
94 |
+
|
95 |
+
<div class="container">
|
96 |
+
<div class="title-container">
|
97 |
+
<div class="title"><span>Femix HassakuXL</span></div>
|
98 |
+
</div>
|
99 |
+
<div class="gallery">
|
100 |
+
<img src="https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/da0e4dfb-786b-434b-9901-ac4ee6147c65/original=true,quality=90/00413-1756718116-1girl,%20solo,%20emilia%20_(re_zero_),%20hair%20ornament,%20hair%20flower,%20bare%20shoulders,%20%20upper%20body,%20looking%20at%20viewer,%20smoking%20cigar,%20look.jpeg" alt="Image 1">
|
101 |
+
<img src="https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7ca09232-41e5-47f6-a2dc-39eb85b35853/original=true,quality=90/00883-3137192565-masterpiece,best%20quality,amazing%20quality,%20(Perfect%20details),(____),%201girl,%20solo,%20long%20hair,%20blue%20eyes,%20blue%20hair,%20multicolored%20e.jpeg" alt="Image 2">
|
102 |
+
<img src="https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/23ae9d04-1a37-490f-91de-057420a780c6/original=true,quality=90/00683-1338574423-(watercolor%20illustration_1.2),timid%20cat%20girl,asymmetrical%20twin%20tails,(flustered%20expression_1.3),transparent%20art%20folder%20with%20chib.jpeg" alt="Image 3">
|
103 |
+
<img src="https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/44cb3616-4cff-4dea-bcb6-caeedb99ceeb/original=true,quality=90/01178-3676839887-masterpiece,best%20quality,amazing%20quality,8k%20resolution,ultra-detailed,_hatsune%20miku,watercolor%20dream%20ver,flowing%20turquoise%20twint.jpeg" alt="Image 4">
|
104 |
+
<img src="https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/708dcb2e-ac71-43a8-9c48-c039008213d4/original=true,quality=90/00894-2231937860-best_quality,absurdres,slice_of_life_style,limited_palette(black+peach),_takagi_san,mid_length_black_hair,playful_wink_expressio.jpeg" alt="Image 4">
|
105 |
+
<img src="https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/76752430-681b-4963-9ce3-adc517091b96/original=true,quality=90/00525-1848722457-frieren_(sousou_no_frieren),%201girl,%20solo,%20wide_eyes,%20open_mouth,%20shocked_expression,%20magic_mishap,%20floating_cabbages,%20dancing_br.jpeg" alt="Image 4">
|
106 |
+
</div>
|
107 |
+
</div>
|
108 |
+
|
109 |
+
## Overview
|
110 |
+
|
111 |
+
FeMix_HassakuXL is a series of Stable Diffusion XL models designed for generating anime-style images, employing a unique blend strategy to combine different aesthetic styles. The series ranges from highly stylized and experimental blends to stable, high-quality models suitable for general use. FeMix_HassakuXL merges two distinct models and concepts of each blend, to achieve various output depending on users needs.
|
112 |
+
|
113 |
+
## Model Details
|
114 |
+
|
115 |
+
- **Developed by**: NeverbiasU
|
116 |
+
- **Model type**: Stable Diffusion XL blend
|
117 |
+
- **Model prompt style**: Booru-tags compatible
|
118 |
+
- **License**: Fair AI Public License 1.0-SD
|
119 |
+
- **Blend Components**:
|
120 |
+
- **Pre-V1**: ANIMAGINE XL 3.0
|
121 |
+
- **V1 onwards**: Illustrious-XL & WAI-NSFW-illustrious-SDXL
|
122 |
+
|
123 |
+
## Recommended Settings
|
124 |
+
|
125 |
+
- **Positive prompts:**
|
126 |
|
127 |
+
```
|
128 |
+
masterpiece, best quality, detailed
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
```
|
130 |
|
131 |
+
- **Negative prompts:**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
|
133 |
+
```
|
134 |
+
worst quality, bad quality, sketch, signature
|
135 |
+
```
|
136 |
|
137 |
+
- **Sampling Method**: DPM++ 2M Karras (Alternative: Euler A)
|
138 |
+
- **CFG**: 5-7
|
139 |
+
- **Sampling Steps**: 25-30
|
140 |
|
141 |
+
## Supported Resolutions
|
142 |
|
143 |
+
```
|
144 |
+
1024 x 1024, 1152 x 896, 896 x 1152, 1216 x 832, 832 x 1216 (most recommended),
|
145 |
+
1344 x 768, 768 x 1344, 1536 x 640, 640 x 1536
|
146 |
+
```
|
147 |
|
148 |
+
## General Recommendations
|
149 |
+
|
150 |
+
- Avoid overloading the model with lengthy prompts. Its versatility is also its weakness, as too much information can lead to unpredictable results.
|
151 |
+
- For high-quality faces: Put "nose" into the negative prompt for smoother faces, especially if Style A becomes too prominent.
|
152 |
+
- Excluded metadata and franchise tags, so please do not use them.
|
153 |
+
|
154 |
+
## Things to Avoid
|
155 |
+
|
156 |
+
- Disruptive features: floating texts, logos, watermarks, speech bubbles, signatures
|
157 |
+
- If these issues occur, add "signature" to the negative prompt
|
158 |
+
- Excluded metadata and franchise tags (do not use them)
|
159 |
+
|
160 |
+
## Version History
|
161 |
+
|
162 |
+
| Version | Blend Composition |
|
163 |
+
|---------|------------------|
|
164 |
+
| v1.0 | Style A5B5 (50% A, 50% B) |
|
165 |
+
| v1.1 | Style A7B3 (70% A, 30% B) |
|
166 |
+
| v1.2 | Style A3B7 (30% A, 70% B) |
|
167 |
+
| v1.3 | Style A4B6 (40% A, 60% B) |
|
168 |
+
| v1.4 | Style A2B8 (20% A, 80% B) |
|
169 |
+
| v1.5 | Style A1B9 (10% A, 90% B) |
|
170 |
+
| v1.6 | Style A6B4 (60% A, 40% B) |
|
171 |
+
| v1.7 | Style A9B1 (90% A, 10% B) |
|
172 |
+
| v1.8 | Style A8B2 (80% A, 20% B) |
|
173 |
+
| v2.0 | Style A5B5 + HassakuXL v2.0 CLIP/VAE |
|
174 |
+
| v2.1 | Style A8B2 + HassakuXL v2.0 CLIP/VAE |
|
175 |
+
| v2.2 | Style A9B1 + HassakuXL v2.0 CLIP/VAE |
|
176 |
+
| v2.3 | Style A1B9 + HassakuXL v2.0 CLIP/VAE |
|
177 |
+
| v2.4 | Style A2B8 + HassakuXL v2.0 CLIP/VAE |
|
178 |
+
| v2.5 | Style A1B9 + HassakuXL v2.1 CLIP/VAE |
|
179 |
+
| v2.6 | Style A2B8 + HassakuXL v2.1 CLIP/VAE |
|
180 |
+
| v2.7 | Style A9B1 + HassakuXL v2.1 CLIP/VAE |
|
181 |
+
| v2.8 | Style A8B2 + HassakuXL v2.1 CLIP/VAE |
|
182 |
+
| v2.9 | Style A1B9 + HassakuXL v2.1fix CLIP/VAE |
|
183 |
+
| v2.10 | Style A2B8 + HassakuXL v2.1fix CLIP/VAE [Unreleased] |
|
184 |
+
| v2.11 | Style A9B1 + HassakuXL v2.1fix CLIP/VAE [Unreleased] |
|
185 |
+
| v2.12 | Style A8B2 + HassakuXL v2.1fix CLIP/VAE [Unreleased] |
|
186 |
+
|
187 |
+
## License
|
188 |
+
|
189 |
+
This model is released under the Fair AI Public License 1.0-SD.
|
190 |
+
|
191 |
+
This model merges aspects from ANIMAGINE XL 3.0 (pre-V1) and Illustrious-XL & WAI-NSFW-illustrious-SDXL (V1 onwards).
|