File size: 16,229 Bytes
c4224d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
{
    "ss_sd_model_name": "nai.ckpt",
    "ss_resolution": "(768, 768)",
    "ss_clip_skip": "2",
    "ss_num_train_images": "460",
    "ss_tag_frequency": {
        "10_Training": {
            " looking at viewer": 38,
            " bangs": 38,
            " long hair": 34,
            " blush": 32,
            " panties": 28,
            " underwear": 27,
            "1girl": 26,
            " solo": 26,
            " shirt": 25,
            " ass": 24,
            " blunt bangs": 22,
            " grey hair": 21,
            " ahoge": 21,
            " tail": 20,
            " indoors": 20,
            " multicolored hair": 19,
            " blue eyes": 19,
            " hair ornament": 19,
            " sitting": 19,
            " long sleeves": 19,
            " skirt": 19,
            " streaked hair": 18,
            " blue hair": 18,
            " breasts": 18,
            " fish tail": 17,
            " shark tail": 17,
            " white panties": 17,
            " navel": 16,
            " off shoulder": 15,
            " small breasts": 15,
            " animal ears": 15,
            " holding": 14,
            " pantyhose": 14,
            " gawr gura": 13,
            " two side up": 13,
            " virtual youtuber": 13,
            " red eyes": 13,
            " feet": 12,
            " no shoes": 12,
            " white shirt": 12,
            " shark girl": 12,
            " school uniform": 12,
            " 1girl": 11,
            " teeth": 11,
            " sharp teeth": 11,
            " soles": 11,
            " window": 11,
            " open mouth": 11,
            " twintails": 11,
            " socks": 10,
            " shark hair ornament": 10,
            " hood": 10,
            " thighs": 10,
            " pleated skirt": 10,
            " smile": 9,
            " thigh strap": 9,
            " blue nails": 9,
            " short sleeves": 9,
            " collarbone": 9,
            " black hair": 9,
            " rabbit ears": 9,
            " loli": 8,
            " clothes lift": 8,
            " cameltoe": 8,
            " lying": 8,
            " 2girls": 8,
            " blue hoodie": 8,
            " hoodie": 8,
            " medium hair": 8,
            " from behind": 8,
            " day": 8,
            " panties under pantyhose": 8,
            " miyu (blue archive)": 8,
            " white pantyhose": 8,
            " fake animal ears": 8,
            " striped panties": 7,
            " striped": 7,
            " multiple views": 7,
            " multiple girls": 7,
            " brown hair": 7,
            " legs": 7,
            " looking back": 7,
            " jacket": 7,
            " outdoors": 7,
            " black jacket": 7,
            " black footwear": 7,
            " serafuku": 7,
            " panty pull": 6,
            " lifted by self": 6,
            " white socks": 6,
            " book": 6,
            " bloop (gawr gura)": 6,
            " nail polish": 6,
            " weapon": 6,
            " gun": 6,
            " brown eyes": 6,
            " scar across eye": 6,
            " scar": 6,
            " scar on face": 6,
            " sky": 6,
            " blue skirt": 6,
            " blue shirt": 6,
            " neckerchief": 6,
            " halo": 6,
            " white hair": 6,
            " pink hair": 6,
            " black shirt": 6,
            "virtual youtuber": 5,
            " spread legs": 5,
            " stomach": 5,
            " standing": 5,
            " groin": 5,
            " cup": 5,
            "gawr gura": 5,
            " blonde hair": 5,
            " barefoot": 5,
            " no panties": 5,
            " food": 5,
            " knees up": 5,
            " one eye closed": 5,
            " stuffed toy": 5,
            " ribbon": 5,
            " submachine gun": 5,
            " fingerless gloves": 5,
            " gloves": 5,
            " one side up": 5,
            " h&k ump": 5,
            " holding weapon": 5,
            " black gloves": 5,
            " yellow eyes": 5,
            " holding gun": 5,
            " open clothes": 5,
            " miniskirt": 5,
            " leaf": 5,
            " thighband pantyhose": 5,
            " shoes": 5,
            " green neckerchief": 5,
            " sailor collar": 5,
            " thighhighs": 5,
            " hat": 5,
            " pink eyes": 5,
            " koharu (blue archive)": 5,
            " head wings": 5,
            " black headwear": 5,
            " beret": 5,
            " wings": 5,
            " tongue": 4,
            " tongue out": 4,
            " nintendo switch": 4,
            " shirt lift": 4,
            " all fours": 4,
            " couch": 4,
            " mouth hold": 4,
            " two-tone hair": 4,
            " on back": 4,
            " cat ears": 4,
            " undressing": 4,
            " toes": 4,
            "ump45 (girls' frontline)": 4,
            " ump9 (girls' frontline)": 4,
            " boots": 4,
            " helicopter": 4,
            " aircraft": 4,
            " black pantyhose": 4,
            " building": 4,
            " clothes pull": 4,
            " on stomach": 4,
            " pillow": 4,
            " white background": 4,
            " simple background": 4,
            " pink skirt": 4,
            " closed mouth": 4,
            " :q": 3,
            " t-shirt": 3,
            " pasties": 3,
            " bandaids on nipples": 3,
            " bandaid": 3,
            " bookshelf": 3,
            " locker": 3,
            " locker room": 3,
            " medium breasts": 3,
            " looking down": 3,
            "multiple girls": 3,
            " purple hair": 3,
            " very long hair": 3,
            " controller": 3,
            " fruit": 3,
            " full body": 3,
            " tiles": 3,
            " bathroom": 3,
            " hood down": 3,
            " pantyshot": 3,
            " topless": 3,
            " back": 3,
            " hair ribbon": 3,
            " open jacket": 3,
            " torn clothes": 3,
            " black skirt": 3,
            " trash can": 3,
            " leaf on head": 3,
            " solo focus": 3,
            " cat": 3,
            " desk": 3,
            " blue serafuku": 3,
            " white sailor collar": 3,
            " skirt lift": 3,
            " shorts": 3,
            " black shorts": 3,
            " bike shorts": 3,
            " bare shoulders": 3,
            " black wings": 3,
            " holding book": 3,
            " animal ear fluff": 3,
            " bottomless": 2,
            " from above": 2,
            " watson amelia": 2,
            " pointy ears": 2,
            " braid": 2,
            " fang": 2,
            " red hair": 2,
            " remote control": 2,
            " grapes": 2,
            " lollipop": 2,
            " candy": 2,
            " convenient censoring": 2,
            " arm up": 2,
            " jewelry": 2,
            " table": 2,
            " ponytail": 2,
            " open shirt": 2,
            " hair between eyes": 2,
            " blue sky": 2,
            " grey skirt": 2,
            " drinking straw": 2,
            " cloud": 2,
            " ump45 (girls' frontline)": 2,
            " from below": 2,
            " parted lips": 2,
            " armband": 2,
            " wariza": 2,
            " brushing teeth": 2,
            " pov": 2,
            " nipples": 2,
            " sink": 2,
            " white footwear": 2,
            " binoculars": 2,
            " sneakers": 2,
            " tree": 2,
            " bright pupils": 2,
            " white pupils": 2,
            " on desk": 2,
            " 3girls": 2,
            " gym uniform": 2,
            " dressing": 2,
            " shorts pull": 2,
            " blinds": 2,
            " adjusting legwear": 2,
            " green eyes": 2,
            " gym shorts": 2,
            " stuffed animal": 2,
            " buruma": 2,
            " on bed": 2,
            " short hair": 2,
            " bow": 2,
            " cat tail": 2,
            " cat girl": 2,
            " bag": 2,
            " v-shaped eyebrows": 2,
            " yawning": 2,
            " phone": 2,
            " cellphone": 2,
            " stuffed shark": 2,
            " smartphone": 2,
            " sleepy": 2,
            " bikini": 1,
            " swimsuit": 1,
            " underboob": 1,
            " side ponytail": 1,
            " black bikini": 1,
            " side-tie bikini bottom": 1,
            " horns": 1,
            " yuri": 1,
            " dress": 1,
            " dark-skinned female": 1,
            " dark skin": 1,
            " braided ponytail": 1,
            " black dress": 1,
            " single braid": 1,
            " facing away": 1,
            " nude": 1,
            " completely nude": 1,
            " soap bubbles": 1,
            " arm behind head": 1,
            " shower head": 1,
            " towel": 1,
            " tile floor": 1,
            " animal hood": 1,
            " shark hood": 1,
            " ball": 1,
            " kitchen": 1,
            " pancake": 1,
            " fork": 1,
            " skin fang": 1,
            " naked hoodie": 1,
            " plate": 1,
            " necklace": 1,
            " refrigerator": 1,
            " armlet": 1,
            " covering breasts": 1,
            " covering": 1,
            " side-tie panties": 1,
            " black panties": 1,
            " cowboy shot": 1,
            " bikini bottom only": 1,
            " butt crack": 1,
            " curtains": 1,
            " crossed legs": 1,
            " hairclip": 1,
            " holding cup": 1,
            " no bra": 1,
            " holding food": 1,
            " popsicle": 1,
            " black ribbon": 1,
            " crossed bangs": 1,
            " collared shirt": 1,
            " chair": 1,
            " dress shirt": 1,
            "ump9 (girls' frontline)": 1,
            " knee pads": 1,
            " purple eyes": 1,
            " shoe soles": 1,
            " rifle": 1,
            " pickaxe": 1,
            " grass": 1,
            " cloudy sky": 1,
            " wide sleeves": 1,
            " giant": 1,
            " giantess": 1,
            " :d": 1,
            " bare legs": 1,
            "toothbrush": 1,
            " plant": 1,
            " nipple slip": 1,
            " pov hands": 1,
            " mug": 1,
            " tail censor": 1,
            " tile wall": 1,
            " reflection": 1,
            " toothbrush": 1,
            " mirror": 1,
            " signature": 1,
            " pink panties": 1,
            " scarf": 1,
            " red scarf": 1,
            " torn pantyhose": 1,
            " crown braid": 1,
            " bed": 1,
            " animal print": 1,
            " bent over": 1,
            " leaning forward": 1,
            " pulled by self": 1,
            " feathered wings": 1,
            " hair bow": 1,
            " foot focus": 1,
            " purple bow": 1,
            " drinking": 1,
            " foreshortening": 1,
            " bra": 1,
            " kimono": 1,
            " white thighhighs": 1,
            " japanese clothes": 1,
            " kimono lift": 1,
            " naughty face": 1,
            " ass visible through thighs": 1,
            " short kimono": 1,
            " pink kimono": 1,
            " clenched teeth": 1,
            " bound": 1,
            " chain": 1,
            " bdsm": 1,
            " headgear": 1,
            " clothing cutout": 1,
            " restrained": 1,
            " pussy": 1,
            " uncensored": 1,
            " anus": 1,
            " pajamas": 1,
            " closed eyes": 1,
            " sleeping": 1,
            " drooling": 1,
            " sweat": 1,
            " black thighhighs": 1,
            " midriff": 1,
            " game controller": 1,
            " box": 1,
            " indian style": 1,
            " extra ears": 1,
            " choker": 1,
            " grey eyes": 1,
            " crop top": 1,
            " collar": 1,
            " short shorts": 1,
            " black eyes": 1,
            " cardboard box": 1,
            " paw print": 1,
            "pantyhose": 1,
            " heterochromia": 1,
            " glasses": 1,
            " stairs": 1,
            " antenna hair": 1,
            " black sailor collar": 1,
            " red neckerchief": 1,
            " mary janes": 1,
            " school bag": 1,
            " semi-rimless eyewear": 1,
            " blue panties": 1,
            " clothes writing": 1,
            " no pants": 1,
            " dog ears": 1,
            " pants": 1,
            " dog tail": 1,
            " pink shirt": 1,
            " dog girl": 1,
            " pulled by another": 1,
            " 1boy": 1,
            " pants pull": 1,
            " blue pants": 1,
            " arm grab": 1,
            " lowleg": 1,
            " hetero": 1,
            " on couch": 1
        }
    },
    "ss_batch_size_per_device": "4",
    "ss_bucket_info": {
        "buckets": {
            "0": {
                "resolution": [
                    512,
                    960
                ],
                "count": 20
            },
            "1": {
                "resolution": [
                    576,
                    960
                ],
                "count": 30
            },
            "2": {
                "resolution": [
                    640,
                    896
                ],
                "count": 70
            },
            "3": {
                "resolution": [
                    704,
                    832
                ],
                "count": 100
            },
            "4": {
                "resolution": [
                    896,
                    640
                ],
                "count": 240
            }
        },
        "mean_img_ar_error": 0.04239437826902321
    },
    "ss_cache_latents": "True",
    "ss_color_aug": "False",
    "ss_dataset_dirs": {
        "10_Training": {
            "n_repeats": 10,
            "img_count": 46
        }
    },
    "ss_enable_bucket": "True",
    "ss_epoch": "8",
    "ss_flip_aug": "False",
    "ss_full_fp16": "False",
    "ss_gradient_accumulation_steps": "1",
    "ss_gradient_checkpointing": "False",
    "ss_keep_tokens": "None",
    "ss_learning_rate": "0.0002",
    "ss_lr_scheduler": "linear",
    "ss_lr_warmup_steps": "0",
    "ss_max_bucket_reso": "960",
    "ss_max_token_length": "150",
    "ss_max_train_steps": "928",
    "ss_min_bucket_reso": "320",
    "ss_mixed_precision": "fp16",
    "ss_network_alpha": "1.0",
    "ss_network_dim": "8",
    "ss_network_module": "networks.lora",
    "ss_new_sd_model_hash": "89d59c3dde4c56c6d5c41da34cc55ce479d93b4007046980934b14db71bdb2a8",
    "ss_noise_offset": "None",
    "ss_num_batches_per_epoch": "116",
    "ss_num_epochs": "8",
    "ss_num_reg_images": "0",
    "ss_optimizer": "lion_pytorch.lion_pytorch.Lion",
    "ss_output_name": "Tonroy",
    "ss_random_crop": "False",
    "ss_reg_dataset_dirs": {},
    "ss_sd_model_hash": "925997e9",
    "ss_sd_scripts_commit_hash": "08ae46b16345274b52b07615b93d75fb1ffed6c6",
    "ss_seed": "23",
    "ss_session_id": "3481180310",
    "ss_shuffle_caption": "False",
    "ss_text_encoder_lr": "None",
    "ss_total_batch_size": "4",
    "ss_training_comment": "None",
    "ss_training_started_at": "1676917078.0767968",
    "ss_unet_lr": "0.0005",
    "ss_v2": "False",
    "sshs_legacy_hash": "2a9e7d92",
    "sshs_model_hash": "8017c98608de4d319b4d136775d4b9c4d0a05dcee896f701c7f458307adad74f"
}