ItsMeBell commited on
Commit
9431241
1 Parent(s): b67d207

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +213 -1
README.md CHANGED
@@ -1,5 +1,217 @@
1
- ---
2
  license: other
3
  license_name: faipl-1.0-sd
4
  license_link: https://freedevproject.org/faipl-1.0-sd/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  license: other
2
  license_name: faipl-1.0-sd
3
  license_link: https://freedevproject.org/faipl-1.0-sd/
4
+ language:
5
+ - en
6
+ tags:
7
+ - text-to-image
8
+ - stable-diffusion
9
+ - safetensors
10
+ - stable-diffusion-xl
11
+ base_model: cagliostrolab/animagine-xl-3.0
12
+ widget:
13
+ - text: 1girl, green hair, sweater, looking at viewer, upper body, beanie, outdoors, night, turtleneck, masterpiece, best quality
14
+ parameter:
15
+ negative_prompt: nsfw, lowres, bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, blurry, artist name
16
+ example_title: 1girl
17
+ - text: 1boy, male focus, green hair, sweater, looking at viewer, upper body, beanie, outdoors, night, turtleneck, masterpiece, best quality
18
+ parameter:
19
+ negative_prompt: nsfw, lowres, bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, blurry, artist name
20
+ example_title: 1boy
21
  ---
22
+ <style>
23
+ .title-container {
24
+ display: flex;
25
+ justify-content: center;
26
+ align-items: center;
27
+ height: 100vh; /* Adjust this value to position the title vertically */
28
+ }
29
+
30
+ .title {
31
+ font-size: 2.5em;
32
+ text-align: center;
33
+ color: #333;
34
+ font-family: 'Helvetica Neue', sans-serif;
35
+ text-transform: uppercase;
36
+ letter-spacing: 0.1em;
37
+ padding: 0.5em 0;
38
+ background: transparent;
39
+ }
40
+
41
+ .title span {
42
+ background: -webkit-linear-gradient(45deg, #ff7a52, #a5cff0);
43
+ -webkit-background-clip: text;
44
+ -webkit-text-fill-color: transparent;
45
+ }
46
+
47
+ .custom-table {
48
+ table-layout: fixed;
49
+ width: 100%;
50
+ border-collapse: collapse;
51
+ margin-top: 2em;
52
+ }
53
+
54
+ .custom-table td {
55
+ width: 50%;
56
+ vertical-align: top;
57
+ padding: 10px;
58
+ box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.15);
59
+ }
60
+
61
+ .custom-image-container {
62
+ position: relative;
63
+ width: 100%;
64
+ margin-bottom: 0em;
65
+ overflow: hidden;
66
+ border-radius: 10px;
67
+ transition: transform .7s; /* Smooth transition for the container */
68
+ }
69
+
70
+ .custom-image-container:hover {
71
+ transform: scale(1.05); /* Scale the container on hover */
72
+ }
73
+
74
+ .custom-image {
75
+ width: 100%;
76
+ height: auto;
77
+ object-fit: cover;
78
+ border-radius: 10px;
79
+ transition: transform .7s;
80
+ margin-bottom: 0em;
81
+ }
82
+
83
+ .nsfw-filter {
84
+ filter: blur(8px); /* Apply a blur effect */
85
+ transition: filter 0.3s ease; /* Smooth transition for the blur effect */
86
+ }
87
+
88
+ .custom-image-container:hover .nsfw-filter {
89
+ filter: none; /* Remove the blur effect on hover */
90
+ }
91
+
92
+ .overlay {
93
+ position: absolute;
94
+ bottom: 0;
95
+ left: 0;
96
+ right: 0;
97
+ color: white;
98
+ width: 100%;
99
+ height: 40%;
100
+ display: flex;
101
+ flex-direction: column;
102
+ justify-content: center;
103
+ align-items: center;
104
+ font-size: 1vw;
105
+ font-style: bold;
106
+ text-align: center;
107
+ opacity: 0; /* Keep the text fully opaque */
108
+ background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0) 100%);
109
+ transition: opacity .5s;
110
+ }
111
+
112
+ .custom-image-container:hover .overlay {
113
+ opacity: 1; /* Make the overlay always visible */
114
+ }
115
+
116
+ .overlay-text {
117
+ background: linear-gradient(45deg, #7ed56f, #28b485);
118
+ -webkit-background-clip: text;
119
+ color: transparent; /* Fallback for browsers that do not support this effect */
120
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Enhanced text shadow for better legibility */
121
+ }
122
+
123
+ .overlay-subtext {
124
+ font-size: 0.75em;
125
+ margin-top: 0.5em;
126
+ font-style: italic;
127
+ }
128
+
129
+ .overlay,
130
+ .overlay-subtext {
131
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
132
+ }
133
+
134
+ .banner-image {
135
+ width: 100%;
136
+ max-height: 300px;
137
+ object-fit: cover;
138
+ border-radius: 10px;
139
+ }
140
+ </style>
141
+
142
+ <img class="banner-image" src="https://huggingface.co/ItsMeBell/LarosBell-XL/blob/main/Preview/Preview_7.png" alt="Banner Image">
143
+
144
+ <h1 class="title">
145
+ <span>LarosBell-XL</span>
146
+ </h1>
147
+
148
+ <table class="custom-table">
149
+ <tr>
150
+ <td>
151
+ <div class="custom-image-container">
152
+ <img class="custom-image" src="https://huggingface.co/ItsMeBell/LarosBell-XL/blob/main/Preview/Preview_1.png" alt="Sample Image 1">
153
+ <div class="overlay">
154
+ <div class="overlay-text">Sample Image 1</div>
155
+ </div>
156
+ </div>
157
+ </td>
158
+ <td>
159
+ <div class="custom-image-container">
160
+ <img class="custom-image" src="https://huggingface.co/ItsMeBell/LarosBell-XL/blob/main/Preview/Preview_2.png" alt="Sample Image 2">
161
+ <div class="overlay">
162
+ <div class="overlay-text">Sample Image 2</div>
163
+ </div>
164
+ </div>
165
+ </td>
166
+ <td>
167
+ <div class="custom-image-container">
168
+ <img class="custom-image" src="https://huggingface.co/ItsMeBell/LarosBell-XL/blob/main/Preview/Preview_6.png" alt="Sample Image 3">
169
+ <div class="overlay">
170
+ <div class="overlay-text">Sample Image 3</div>
171
+ </div>
172
+ </div>
173
+ </td>
174
+ </tr>
175
+ <tr>
176
+ <td>
177
+ <div class="custom-image-container">
178
+ <img class="custom-image" src="https://huggingface.co/ItsMeBell/LarosBell-XL/blob/main/Preview/Preview_9.png" alt="Sample Image 4">
179
+ <div class="overlay">
180
+ <div class="overlay-text">Sample Image 4</div>
181
+ </div>
182
+ </div>
183
+ </td>
184
+ <td>
185
+ <div class="custom-image-container">
186
+ <img class="custom-image" src="https://huggingface.co/ItsMeBell/LarosBell-XL/blob/main/Preview/Preview_10.png" alt="Sample Image 5">
187
+ <div class="overlay">
188
+ <div class="overlay-text">Sample Image 5</div>
189
+ </div>
190
+ </div>
191
+ </td>
192
+ <td>
193
+ <div class="custom-image-container">
194
+ <img class="custom-image" src="https://huggingface.co/ItsMeBell/LarosBell-XL/blob/main/Preview/Preview_11.png" alt="Sample Image 6">
195
+ <div class="overlay">
196
+ <div class="overlay-text">Sample Image 6</div>
197
+ </div>
198
+ </div>
199
+ </td>
200
+ </tr>
201
+ </table>
202
+
203
+ **LarosBell-XL** is a merged model that specializes in generating high-quality 3D anime images from textual prompts.
204
+
205
+ ## Model Details
206
+ - **Developed by**: [Laros Team]
207
+ - **Model type**: Diffusion-based text-to-image generative model
208
+ - **Model Description**: Generate high-quality 3D anime images from textual prompts
209
+ - **License**: [Fair AI Public License 1.0-SD](https://freedevproject.org/faipl-1.0-sd/)
210
+ - **Merged from models**:
211
+ - [Animagine XL 3.0](https://huggingface.co/cagliostrolab/animagine-xl-3.0)
212
+ - [AlbedobaseXL]
213
+ - [RaemuXL]
214
+
215
+ ## Recommended settings
216
+
217
+ To guide the model towards generating high-aesthetic images, use negative prompts like: