lylogummy commited on
Commit
39f7c7d
Β·
1 Parent(s): faf73b6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +312 -1
README.md CHANGED
@@ -1,3 +1,314 @@
1
  ---
2
- license: cc
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: creativeml-openrail-m
3
+ language:
4
+ - en
5
+ pipeline_tag: text-to-image
6
+ tags:
7
+ - art
8
+ - anime
9
+ - stable-diffusion
10
+ - SD1.5
11
+ library_name: safetensors
12
  ---
13
+ <style>
14
+ .title-container {
15
+ display: flex;
16
+ justify-content: center;
17
+ align-items: center;
18
+ height: 100vh; /* Adjust this value to position the title vertically */
19
+ }
20
+
21
+ .title {
22
+ font-size: 2.5em;
23
+ text-align: center;
24
+ color: #d6767f;
25
+ font-family: 'Roboto', sans-serif;
26
+ text-transform: uppercase;
27
+ letter-spacing: 0.11em;
28
+ padding: 0.218em 0;
29
+ background: transparent;
30
+ }
31
+
32
+ .title span {
33
+ background: -webkit-linear-gradient(69deg, #130c28, #2a4aee);
34
+ -webkit-background-clip: text;
35
+ -webkit-text-fill-color: transparent;
36
+ }
37
+
38
+ .custom-table {
39
+ table-layout: fixed;
40
+ width: 100%;
41
+ border-collapse: collapse;
42
+ margin-top: 2em;
43
+ }
44
+
45
+ .custom-table td {
46
+ width: 50%;
47
+ vertical-align: top;
48
+ padding: 10px;
49
+ box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.15);
50
+ }
51
+ .custom-image-container {
52
+ position: relative;
53
+ width: 100%;
54
+ margin-bottom: 0em;
55
+ overflow: hidden;
56
+ border-radius: 10px;
57
+ transition: transform .7s;
58
+ /* Smooth transition for the container */
59
+ }
60
+ .custom-image-container:hover {
61
+ transform: scale(1.05);
62
+ /* Scale the container on hover */
63
+ }
64
+ .custom-image-container:hover .custom-image {
65
+ opacity: 0
66
+ }
67
+ .custom-image-container:hover
68
+ .hover-image {
69
+ opacity: 1;
70
+ }
71
+ .custom-image {
72
+ width: 100%;
73
+ height: auto;
74
+ object-fit: cover;
75
+ border-radius: 10px;
76
+ transition: transform .7s, opacity .5s;
77
+ margin-bottom: 0em;
78
+ }
79
+ .hover-image {
80
+ position: absolute;
81
+ top: 0;
82
+ left: 0;
83
+ opacity: 0;
84
+ transition: opacity .5s;
85
+ }
86
+
87
+ .nsfw-filter {
88
+ filter: blur(8px); /* Apply a blur effect */
89
+ transition: filter 0.3s ease; /* Smooth transition for the blur effect */
90
+ }
91
+ .custom-image-container:hover .nsfw-filter {
92
+ filter: none; /* Remove the blur effect on hover */
93
+ }
94
+
95
+ .overlay {
96
+ position: absolute;
97
+ bottom: 0;
98
+ left: 0;
99
+ right: 0;
100
+ color: white;
101
+ width: 100%;
102
+ height: 40%;
103
+ display: flex;
104
+ flex-direction: column;
105
+ justify-content: center;
106
+ align-items: center;
107
+ font-size: 1vw;
108
+ font-style: bold;
109
+ text-align: center;
110
+ opacity: 0;
111
+ /* Keep the text fully opaque */
112
+ background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
113
+ transition: opacity .5s;
114
+ }
115
+ .custom-image-container:hover .overlay {
116
+ opacity: 1;
117
+ /* Make the overlay always visible */
118
+ }
119
+ .overlay-text {
120
+ background: linear-gradient(45deg, #130c28, #ca76e2);
121
+ -webkit-background-clip: text;
122
+ color: transparent;
123
+ /* Fallback for browsers that do not support this effect */
124
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
125
+ /* Enhanced text shadow for better legibility */
126
+
127
+ .overlay-subtext {
128
+ font-size: 0.75em;
129
+ margin-top: 0.5em;
130
+ font-style: italic;
131
+ }
132
+
133
+ .overlay,
134
+ .overlay-subtext {
135
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
136
+ }
137
+
138
+
139
+
140
+ </style>
141
+
142
+ <table class="custom-table">
143
+ <h1 class="title">
144
+ <span>∞ GENERATION ∞</span>
145
+ <tr>
146
+ <td>
147
+ <div class="custom-image-container">
148
+ <div class="image-wrapper">
149
+ <img class="image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/imgs/1.png" alt="sample2">
150
+ </div>
151
+ </div>
152
+ </td>
153
+ <td>
154
+ <div class="custom-image-container">
155
+ <div class="image-wrapper">
156
+ <img class="image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/imgs/2.png" alt="sample2">
157
+ </div>
158
+ </div>
159
+ </td>
160
+ <td>
161
+ <div class="custom-image-container">
162
+ <div class="image-wrapper">
163
+ <img class="image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/imgs/3.png" alt="sample2">
164
+ </div>
165
+ </div>
166
+ </td>
167
+ </tr>
168
+ <tr>
169
+ <td>
170
+ <div class="custom-image-container">
171
+ <div class="image-wrapper">
172
+ <img class="image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/imgs/4.png" alt="sample2">
173
+ </div>
174
+ </div>
175
+ </td>
176
+ <td>
177
+ <div class="custom-image-container">
178
+ <div class="image-wrapper">
179
+ <img class="image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/imgs/5.png" alt="sample2">
180
+ </div>
181
+ </div>
182
+ </td>
183
+ <td>
184
+ <div class="custom-image-container">
185
+ <div class="image-wrapper">
186
+ <img class="image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/imgs/6.png" alt="sample2">
187
+ </div>
188
+ </div>
189
+ </td>
190
+ </tr>
191
+ <tr>
192
+ <td>
193
+ <div class="custom-image-container">
194
+ <div class="image">
195
+ <img class="image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/imgs/7.png" alt="sample2">
196
+ </div>
197
+ </div>
198
+ </td>
199
+ <td>
200
+ <div class="custom-image-container">
201
+ <div class="image">
202
+ <img class="image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/imgs/8.png" alt="sample2">
203
+ </div>
204
+ </div>
205
+ </td>
206
+ <td>
207
+ <div class="custom-image-container">
208
+ <div class="image-wrapper">
209
+ <img class="image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/imgs/9.png" alt="sample2">
210
+ </div>
211
+ </div>
212
+ </td>
213
+ </table>
214
+
215
+
216
+
217
+
218
+
219
+
220
+ <h1 class="title">
221
+ <span>∞ Animation ∞</span>
222
+ </h1>
223
+ <table class="custom-table">
224
+ <tr>
225
+ <td>
226
+ <div class="custom-image-container">
227
+ <div class="image-wrapper">
228
+ <img class="custom-image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/vids/batch1.png" alt="sample2">
229
+ <img class="hover-image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/vids/batch1.gif" alt="sampleb2">
230
+ <div class="overlay" style="font-size: 1vw; font-style: bold;"> Purple Moon <div class="overlay-subtext" style="font-size: 0.75em; font-style: italic;">"ComfyUI"</div></div>
231
+ </div>
232
+ </div>
233
+ <div class="custom-image-container">
234
+ <div class="image-wrapper">
235
+ <img class="custom-image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/vids/batch2.png" alt="sample6">
236
+ <img class="hover-image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/vids/batch2.gif" alt="sampleb6">
237
+ <div class="overlay" style="font-size: 1vw; font-style: bold;"> Saphire <div class="overlay-subtext" style="font-size: 0.75em; font-style: italic;">"ComfyUI"</div></div>
238
+ </div>
239
+ </td>
240
+ <td>
241
+ <div class="custom-image-container">
242
+ <div class="image-wrapper">
243
+ <img class="custom-image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/vids/batch3.png" alt="sample3">
244
+ <img class="hover-image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/vids/batch3.gif" alt="sampleb3">
245
+ <div class="overlay" style="font-size: 1vw; font-style: bold;"> Golden Demon <div class="overlay-subtext" style="font-size: 0.75em; font-style: italic;">"ComfyUI"</div></div>
246
+ </div>
247
+ </div>
248
+ <div class="custom-image-container">
249
+ <div class="image-wrapper">
250
+ <img class="custom-image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/vids/batch4.png" alt="sample4">
251
+ <img class="hover-image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/vids/batch4.gif" alt="sampleb4">
252
+ <div class="overlay" style="font-size: 1vw; font-style: bold;"> Fox savior <div class="overlay-subtext" style="font-size: 0.75em; font-style: italic;">"ComfyUI"</div></div>
253
+ </td>
254
+ <td>
255
+ <div class="custom-image-container">
256
+ <div class="image-wrapper">
257
+ <img class="custom-image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/vids/batch6.png" alt="sample5">
258
+ <img class="hover-image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/vids/batch6.gif" alt="sampleb5">
259
+ <div class="overlay" style="font-size: 1vw; font-style: bold;"> Witchard <div class="overlay-subtext" style="font-size: 0.75em; font-style: italic;">"ComfyUI"</div></div>
260
+ </div>
261
+ </div>
262
+ <div class="custom-image-container">
263
+ <div class="image-wrapper">
264
+ <img class="custom-image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/vids/batch7.png" alt="sample6">
265
+ <img class="hover-image" src="https://huggingface.co/lylogummy/bunny4spoon/resolve/main/vids/batch7.gif" alt="sampleb6">
266
+ <div class="overlay" style="font-size: 1vw; font-style: bold;"> Nurture <div class="overlay-subtext" style="font-size: 0.75em; font-style: italic;">"ComfyUI"</div></div>
267
+ </div>
268
+ </td>
269
+ </tr>
270
+ </table>
271
+ <p align="center", style="font-size: 4.2rem; font-style:bold"><strong><a></strong> Download</a></p>
272
+
273
+ # ∞ Bunny 4 Spoon is the 4th iteration of the Bunny model series
274
+
275
+ Trained on proprietary custom made LoRAs for a cumulative 200 epochs and finetuned on my own 2k [not NAI v3] dataset, Bunny 4 Spoon improves on the bunny formula and brings improvements on all fronts. I've been working on this model for over 3 months now and while I still have some beta models locally, I thought I'd upload this for you to test out. Cheers
276
+ <hr>
277
+
278
+ <details id="Dropdown">
279
+ <summary style="font-size: 1.10em"><strong> Changelogs </strong> (click to open the dropdown)</summary>
280
+
281
+ ### 12 21 2023
282
+ - Repo added
283
+ - Model release
284
+
285
+ </details>
286
+ <hr>
287
+
288
+ # ∞ Usage
289
+
290
+ Still working out the details but should be the same as Bunny 3.
291
+
292
+ #### Embeddings Downloads
293
+
294
+ - [**tobeadded**](https://civitai.com/models/), [Direct download](https://civitai.com/api/)
295
+
296
+ #### VAE
297
+ - [**clearvae_vae**](https://civitai.com/models/22354/clearvae), [Direct download](https://civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/model/837489/clearvaeV23.y8o0.safetensors?X-Amz-Expires=86400&response-content-disposition=attachment%3B%20filename%3D%22clearvae_v23.safetensors%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=e01358d793ad6966166af8b3064953ad/20231221/us-east-1/s3/aws4_request&X-Amz-Date=20231221T060935Z&X-Amz-SignedHeaders=host&X-Amz-Signature=79a62fe2e6c689d9b8c322c96d668148d488b59e94cabbf8783ce0ef88e9926f)
298
+
299
+ # ∞ Credits
300
+
301
+ - Imi for the great layout
302
+ - [**imi**](https://huggingface.co/Enferlain)
303
+
304
+ - Tools
305
+ - [**Bayesian merger by s1dlx**](https://github.com/s1dlx/sd-webui-bayesian-merger/)
306
+ - [**LoRA_Easy_Training_Scripts by Derrian**](https://github.com/derrian-distro/LoRA_Easy_Training_Scripts)
307
+
308
+ ## ∞ Legal
309
+ ```
310
+ You are free to use this model locally but
311
+ 1. You aren't allowed to redistribute on another platform. (like CivitAI or Tensor.Art)
312
+ 2. I am not responsible for how this model is used to generate images.
313
+ 3. You may use this model or derivates/mixes comercially but you must attach a link to my Patreon https://www.patreon.com/JuixyLov on all sales
314
+ ```