File size: 49,871 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 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 |
{
"ss_sd_model_name": "animefull-latest.ckpt",
"ss_resolution": "(576, 832)",
"ss_clip_skip": "2",
"ss_num_train_images": "460",
"ss_tag_frequency": {
"2_All": {
"ter": 230,
"blush": 205,
"1girl": 172,
"open mouth": 158,
"short hair": 147,
"breasts": 144,
"sweat": 126,
"looking at viewer": 119,
"solo": 116,
"small breasts": 111,
"smile": 108,
"long hair": 98,
"monochrome": 95,
"navel": 87,
"hat": 86,
"greyscale": 83,
"speech bubble": 82,
"shirt": 80,
"simple background": 78,
"bangs": 76,
"nude": 74,
"white background": 71,
"ter (otokoter)": 70,
"nipples": 69,
"beanie": 65,
"comic": 63,
"multiple girls": 62,
"ass": 58,
"selene \\(pokemon\\)": 57,
"2girls": 56,
"nintendo": 55,
"creatures (company)": 49,
"game freak": 49,
"pokemon": 49,
"standing": 46,
"collarbone": 45,
"full body": 45,
"shoes": 44,
"shorts": 43,
"bare shoulders": 42,
"pokemon (game)": 42,
"teeth": 41,
"1boy": 41,
"holding": 41,
"embarrassed": 40,
"closed eyes": 39,
"black hair": 38,
"pussy": 36,
"blue eyes": 36,
"hair ornament": 36,
"closed mouth": 36,
"short sleeves": 36,
"brown hair": 36,
"sitting": 35,
"english text": 34,
"pokemon sm": 32,
"underwear": 31,
"loli": 30,
"ponytail": 30,
"fang": 30,
"public indecency": 30,
"exhibitionism": 30,
"chinese text": 30,
":d": 30,
"short shorts": 29,
"long sleeves": 29,
"censored": 27,
"orange hair": 27,
"yuri": 27,
"panties": 27,
"selene (pokemon)": 26,
"dress": 26,
"flat chest": 26,
"tongue": 26,
"pussy juice": 26,
"one eye closed": 25,
"gloves": 25,
"pointy ears": 25,
"sleeveless": 24,
"hair between eyes": 24,
"outdoors": 24,
"sidelocks": 24,
"brown eyes": 24,
"dark skin": 24,
"multiple boys": 23,
"covering": 22,
"scarf": 22,
"heart": 22,
"cowboy shot": 21,
"commentary request": 21,
"red headwear": 21,
"boots": 21,
"socks": 21,
"hairband": 21,
"eyelashes": 21,
"looking back": 21,
"twintails": 20,
"armpits": 19,
"medium breasts": 19,
"jewelry": 19,
"tears": 19,
"tied shirt": 19,
"twitter username": 19,
"lana \\(pokemon\\)": 19,
"lillie \\(pokemon\\)": 19,
"open clothes": 18,
"skirt": 18,
"bow": 18,
"completely nude": 18,
"white shirt": 18,
"head scarf": 18,
"2boys": 18,
"side ponytail": 17,
"clothes lift": 17,
"jacket": 17,
"no panties": 17,
"animal ears": 17,
"swimsuit": 17,
"tentacle hair": 17,
"braid": 17,
"tank top": 16,
"yellow shirt": 16,
"blonde hair": 16,
"tail": 16,
"green eyes": 16,
"akari \\(pokemon\\)": 16,
"hetero": 16,
"translation request": 16,
"from behind": 16,
"upper teeth only": 15,
"covering breasts": 15,
"flower": 15,
"spread legs": 15,
"trembling": 15,
"squatting": 15,
"wet": 14,
"hair flower": 14,
"barefoot": 14,
"bottomless": 14,
"pokemon \\(creature\\)": 14,
"glasses": 14,
"dark-skinned female": 14,
"inkling": 14,
"inkling girl": 14,
"sneakers": 14,
"galaxy expedition team survey corps uniform": 14,
"midriff": 13,
"grey eyes": 13,
"lifted by self": 13,
"no bra": 13,
"shiny": 13,
"aqua eyes": 13,
"covering crotch": 13,
"pantyhose": 13,
"mallow \\(pokemon\\)": 13,
"bikini": 13,
"sleeveless shirt": 12,
"suspenders": 12,
"poke ball": 12,
"looking down": 12,
"bracelet": 12,
"pubic hair": 12,
"black footwear": 12,
"sweatdrop": 12,
"fangs": 12,
"bag": 12,
"hood": 12,
"denim": 11,
"groin": 11,
"signature": 11,
"thighs": 11,
"off shoulder": 11,
"korean text": 11,
"public nudity": 11,
"hairclip": 11,
"from below": 11,
"ribbon": 11,
"wavy mouth": 11,
"red eyes": 11,
"v": 11,
"yellow eyes": 11,
"saliva": 11,
"blue hair": 11,
"tongue out": 11,
"grin": 10,
"clothes pull": 10,
"day": 10,
"sky": 10,
"stomach": 10,
"bare arms": 10,
"thick eyebrows": 10,
"hand up": 10,
"naked scarf": 10,
"lying": 10,
"covered nipples": 10,
"3girls": 10,
"arm up": 10,
"cosplay": 10,
"spot color": 10,
"baseball cap": 10,
"crop top": 9,
"upper body": 9,
"content rating": 9,
"cover": 9,
"cover page": 9,
"denim shorts": 9,
"undressing": 9,
"misty \\(pokemon\\)": 9,
"bright pupils": 9,
"v-shaped eyebrows": 9,
"female pubic hair": 9,
"bare legs": 9,
"choker": 9,
"!": 9,
"fingernails": 9,
"thighhighs": 9,
"purple eyes": 9,
"white panties": 9,
"cat tail": 9,
"nose blush": 9,
"translated": 9,
"pants": 9,
"rain": 9,
"shirt lift": 8,
"cleavage": 8,
"horns": 8,
"meme": 8,
"short dress": 8,
"earrings": 8,
"soles": 8,
"toes": 8,
"wet clothes": 8,
"arms up": 8,
"shiny skin": 8,
"green shorts": 8,
"pink eyes": 8,
"t-shirt": 8,
"doujin cover": 8,
"cat ears": 8,
"bar censor": 8,
"fingering": 8,
"backpack": 8,
"food": 8,
"weapon": 8,
"purple hair": 8,
"wariza": 8,
"naked coat": 8,
"sunglasses": 8,
"sandals": 8,
"misty (pokemon)": 7,
"apron": 7,
"collar": 7,
"parted lips": 7,
"holding poke ball": 7,
"feet": 7,
"d": 7,
"very long hair": 7,
"shiny hair": 7,
"parted bangs": 7,
";d": 7,
"torn clothes": 7,
"bike shorts": 7,
"red scarf": 7,
"animal hands": 7,
"white hair": 7,
"eyewear on head": 7,
"tan": 7,
"leaning forward": 7,
"blunt bangs": 7,
"multicolored hair": 7,
"alternate costume": 7,
"pleated skirt": 7,
"surprised": 7,
"twin braids": 7,
"school uniform": 7,
"sparkle": 7,
"coat": 7,
"raincoat": 7,
"umbrella": 7,
"highres": 6,
"female focus": 6,
"convenient censoring": 6,
"blue sky": 6,
"cloud": 6,
"open shorts": 6,
"artist name": 6,
"pink dress": 6,
"red hair": 6,
"hair bun": 6,
"asymmetrical bangs": 6,
"high heels": 6,
"open jacket": 6,
"ear blush": 6,
"green hair": 6,
"white headwear": 6,
"belt": 6,
"hair bow": 6,
"swept bangs": 6,
"back": 6,
"forehead": 6,
"naked ribbon": 6,
"semi-rimless eyewear": 6,
"@_@": 6,
"paw gloves": 6,
"bent over": 6,
"fake animal ears": 6,
"miniskirt": 6,
"symbol-shaped pupils": 6,
"black shorts": 6,
"wristband": 6,
"commentary": 6,
"hot": 6,
"clenched teeth": 6,
"arms behind back": 6,
"masturbation": 6,
"half-closed eyes": 6,
"one-piece swimsuit": 6,
"elio \\(pokemon\\)": 6,
"tanlines": 6,
"gloria \\(pokemon\\)": 6,
"striped": 6,
"medium hair": 6,
"third-party edit": 5,
"pokemon (anime)": 5,
"pokemon (classic anime)": 5,
"open fly": 5,
"armlet": 5,
"emphasis lines": 5,
"large breasts": 5,
"haruno haruka": 5,
"chinese clothes": 5,
"china dress": 5,
"gradient background": 5,
"gradient": 5,
"single hair bun": 5,
"hair ribbon": 5,
"red ribbon": 5,
"kneeling": 5,
"nail polish": 5,
"phone": 5,
"facing viewer": 5,
"necktie": 5,
"anus": 5,
"rabbit ears": 5,
"hand on hip": 5,
"suspender shorts": 5,
"clothed male nude female": 5,
"solo focus": 5,
"pink ribbon": 5,
"under-rim eyewear": 5,
"on stomach": 5,
"cameltoe": 5,
"bodysuit": 5,
"elbow gloves": 5,
"black gloves": 5,
"holding weapon": 5,
"blue background": 5,
"hands up": 5,
"orange eyes": 5,
"female ejaculation": 5,
"rotom": 5,
"?": 5,
"female masturbation": 5,
"arm support": 5,
"puffy sleeves": 5,
"mimikyu": 5,
"topless": 5,
"see-through": 5,
"pink hair": 5,
"bandaid": 5,
"dress lift": 5,
"guzma (pokemon)": 5,
"panty pull": 5,
"ball": 4,
"shorts pull": 4,
"unbuttoned": 4,
"mother and daughter": 4,
"sharp teeth": 4,
"strapless": 4,
"black jacket": 4,
"high heel boots": 4,
"pokemon swsh": 4,
"sleeveless dress": 4,
"!!": 4,
"facial hair": 4,
"sharp fingernails": 4,
"naked jacket": 4,
"tattoo": 4,
":3": 4,
"hair over one eye": 4,
"looking at another": 4,
"bob cut": 4,
"capelet": 4,
"flying sweatdrops": 4,
"detached sleeves": 4,
"^_^": 4,
"outstretched arm": 4,
"selfie": 4,
"original": 4,
"spoken question mark": 4,
"floral print": 4,
"no pants": 4,
"side-tie bikini bottom": 4,
"bow panties": 4,
"tree": 4,
"leotard": 4,
"fingerless gloves": 4,
"mask": 4,
"headband": 4,
"heart-shaped pupils": 4,
"cum": 4,
"4girls": 4,
"on back": 4,
"bra": 4,
"white footwear": 4,
"crying": 4,
"japanese clothes": 4,
"floating hair": 4,
"aqua hair": 4,
"short eyebrows": 4,
"splatoon (series)": 4,
"...": 4,
"lillie (pokemon)": 4,
"pulled by self": 4,
"two-tone hair": 4,
"fur trim": 4,
"orgasm": 4,
"heart censor": 4,
"kneehighs": 4,
"+_+": 4,
"akari (pokemon)": 4,
"pokemon legends arceus": 4,
"serafuku": 4,
"sash": 4,
"gen 7 pokemon": 4,
"halloween": 4,
"pokemon (creature)": 4,
"ahoge": 4,
"running": 4,
"licking": 4,
"kneepits": 4,
"leg up": 4,
"flashing": 4,
"@ @": 4,
"paws": 4,
"box": 4,
"cup": 4,
"table": 4,
"from side": 3,
"uncensored": 3,
"frown": 3,
"hair tie": 3,
"short ponytail": 3,
"underboob": 3,
"cleft of venus": 3,
"blue shorts": 3,
"border": 3,
"bowsette": 3,
"hand on own hip": 3,
"overalls": 3,
"spiked bracelet": 3,
"spiked shell": 3,
"spikes": 3,
"strapless dress": 3,
"super crown": 3,
"buttercup redraw challenge (meme)": 3,
"pajamas": 3,
"powerpuff girls": 3,
"screencap inset": 3,
"dawn \\(pokemon\\)": 3,
"side slit": 3,
"legs": 3,
"poke ball (basic)": 3,
"blue archive": 3,
"cropped legs": 3,
"glowing": 3,
"bed": 3,
"indoors": 3,
"white socks": 3,
"bed sheet": 3,
"black-framed eyewear": 3,
"nervous smile": 3,
"clothed female nude female": 3,
"nearly naked apron": 3,
"holding ball": 3,
"armpit peek": 3,
"torn shirt": 3,
"index finger raised": 3,
"facepaint": 3,
"age difference": 3,
"wide-eyed": 3,
"red-framed eyewear": 3,
"one-piece tan": 3,
"suction cups": 3,
"motion lines": 3,
"shirt tug": 3,
"animal print": 3,
"oni horns": 3,
"oni": 3,
"wrist cuffs": 3,
"fur-trimmed gloves": 3,
"double v": 3,
"drooling": 3,
"female orgasm": 3,
"cellphone": 3,
"smartphone": 3,
"taking picture": 3,
"sweater": 3,
"jumping": 3,
"pink bow": 3,
"ocean": 3,
"heavy breathing": 3,
"sailor collar": 3,
"clitoral stimulation": 3,
"pink shirt": 3,
"shadow": 3,
"bikini bottom only": 3,
"happy halloween": 3,
"orange background": 3,
"pink gloves": 3,
"white dress": 3,
"hug": 3,
"stitches": 3,
"covering face": 3,
"water": 3,
"bandaid on leg": 3,
"bandaid on knee": 3,
"^^^": 3,
"breast sucking": 3,
"tam o' shanter": 3,
"notice lines": 3,
"skirt lift": 3,
"condom": 3,
"condom wrapper": 3,
"shaded face": 3,
"lana (pokemon)": 3,
"chair": 3,
"no shoes": 3,
"raised eyebrows": 3,
"brown choker": 3,
"sleeves past wrists": 3,
"spoken ellipsis": 3,
"cat day": 3,
"cat paws": 3,
"fake tail": 3,
"genderswap": 3,
"striped panties": 3,
"rubber boots": 3,
"black skirt": 3,
"digimon": 3,
"digimon adventure 02": 3,
"yagami hikari": 3,
"3boys": 3,
"o": 3,
"drinking straw": 3,
"one breast out": 3,
"bendy straw": 3,
"kukui (pokemon)": 3,
"gym leader": 2,
"pokemon the electric tale of pikachu": 2,
"nude filter": 2,
"wink": 2,
"asymmetrical hair": 2,
"cutoffs": 2,
"unzipped": 2,
"outside border": 2,
"crossed arms": 2,
"black dress": 2,
"bowsette jr.": 2,
"crown": 2,
"mario": 2,
"mario (series)": 2,
"mature female": 2,
"new super mario bros. u deluxe": 2,
"spiked armlet": 2,
"spiked collar": 2,
"turtle shell": 2,
"reference inset": 2,
"from above": 2,
"flats": 2,
"no socks": 2,
"dress tug": 2,
"ankle boots": 2,
"black choker": 2,
"marnie (pokemon)": 2,
"bird": 2,
"covering own eyes": 2,
"toenails": 2,
"^ ^": 2,
"chinese commentary": 2,
"holding hands": 2,
"interlocked fingers": 2,
"necklace": 2,
"glowing eyes": 2,
"blurry": 2,
"colored skin": 2,
"rabbit girl": 2,
"colored sclera": 2,
"black sclera": 2,
"rabbit tail": 2,
"blurry background": 2,
"dutch angle": 2,
"buckle": 2,
"bedroom": 2,
"reaching towards viewer": 2,
"v over eye": 2,
"under covers": 2,
"blanket": 2,
"naked sheet": 2,
"tareme": 2,
"low twintails": 2,
"side-tie panties": 2,
"holding clothes": 2,
":o": 2,
"bandana": 2,
"!?": 2,
"red headband": 2,
"frills": 2,
"ahegao": 2,
"penis": 2,
"fruit": 2,
"cream": 2,
"single braid": 2,
"legs apart": 2,
"ink tank \\(splatoon\\)": 2,
"domino mask": 2,
"paint": 2,
"paint splatter": 2,
"tentacles": 2,
"multiple views": 2,
"poke ball \\(basic\\)": 2,
"between legs": 2,
"claw pose": 2,
"cross-laced footwear": 2,
"lum": 2,
"tiger print": 2,
"yellow bikini": 2,
"long fingernails": 2,
"knee boots": 2,
"white skirt": 2,
"z-ring": 2,
"happy": 2,
"holding strap": 2,
"bowtie": 2,
"playboy bunny": 2,
"ass grab": 2,
"pokemon masters ex": 2,
"against wall": 2,
"pubic tattoo": 2,
"vending machine": 2,
"usada pekora": 2,
"virtual youtuber": 2,
"seiza": 2,
"food-themed hair ornament": 2,
"carrot hair ornament": 2,
"animal ear fluff": 2,
"butt crack": 2,
"fff threesome": 2,
"group sex": 2,
"holding phone": 2,
"black socks": 2,
"sweater vest": 2,
"shoe soles": 2,
"dress shirt": 2,
"callie \\(splatoon\\)": 2,
"marie \\(splatoon\\)": 2,
"detached collar": 2,
"mole": 2,
"white gloves": 2,
"mole under eye": 2,
"bound": 2,
"squid": 2,
"grey hair": 2,
"jumpsuit": 2,
"tearing up": 2,
"double bun": 2,
"yellow shorts": 2,
"straight hair": 2,
"thigh gap": 2,
"peeing": 2,
"breath": 2,
"guzma \\(pokemon\\)": 2,
"faceless": 2,
"faceless female": 2,
"neckerchief": 2,
"white sailor collar": 2,
"adjusting eyewear": 2,
"blue shirt": 2,
"ninja": 2,
"white border": 2,
"clenched hand": 2,
"top-down bottom-up": 2,
"stretching": 2,
"tagme": 2,
"gen 4 pokemon": 2,
"hand on another's shoulder": 2,
"witch hat": 2,
"acerola \\(pokemon\\)": 2,
"single glove": 2,
"knees": 2,
"black eyes": 2,
"grey background": 2,
"tray": 2,
"assisted exposure": 2,
"santa hat": 2,
"kimono": 2,
"revealing clothes": 2,
"gloria (pokemon)": 2,
"hooded cardigan": 2,
"character name": 2,
"dolphin shorts": 2,
"leggings": 2,
"black headwear": 2,
"copyright name": 2,
":p": 2,
"skirt hold": 2,
"star \\(symbol\\)": 2,
"white bikini": 2,
"bow hairband": 2,
"brown footwear": 2,
"pillow": 2,
"after sex": 2,
"cape": 2,
"halloween costume": 2,
"trick or treat": 2,
"locked arms": 2,
"hoodie": 2,
"body blush": 2,
"yellow raincoat": 2,
"holding umbrella": 2,
"litten": 2,
"naked shirt": 2,
"electric fan": 2,
"white hairband": 2,
"yellow hairband": 2,
"caught": 2,
"all fours": 2,
"body writing": 2,
"oversized clothes": 2,
"thigh strap": 2,
"animal costume": 2,
"cat costume": 2,
"cardigan": 2,
"pants pull": 2,
"brother and sister": 2,
"pink panties": 2,
"mouth hold": 2,
"on head": 2,
"pokemon on head": 2,
"whistle": 2,
"helmet": 2,
"chicken girl (toku)": 2,
"shorts around one leg": 2,
"paintbrush": 2,
"sketchbook": 2,
"blue pants": 2,
"expressionless": 2,
"octoling": 2,
"spoken exclamation mark": 2,
"squidbeak splatoon": 2,
"holding pokemon": 2,
"pelvic curtain": 2,
"halo": 2,
"on bed": 2,
"bug": 2,
"valentine": 2,
"heart-shaped box": 2,
"pink background": 2,
"tailmon": 2,
"tailmon (cosplay)": 2,
"mind control": 2,
"loose socks": 2,
"standing on one leg": 2,
"panties around one leg": 2,
"eating": 2,
"gift": 2,
"gift box": 2,
"puddle": 2,
"trial captain": 2,
"beach": 2,
"disposable cup": 2,
"holding food": 2,
"oppai challenge": 2,
"hard-translated": 2,
"hooded jacket": 2,
"absurdres": 1,
"framed": 1,
"profile": 1,
"doujinshi": 1,
"doujinshi cover": 1,
"brown jacket": 1,
"jacket removed": 1,
"anger vein": 1,
"between breasts": 1,
"blue overalls": 1,
"bowser logo": 1,
"flat cap": 1,
"forked eyebrows": 1,
"grey apron": 1,
"mini crown": 1,
"naked tabard": 1,
"nintendo switch": 1,
"red shirt": 1,
"tabard": 1,
"buttercup (ppg)": 1,
"derivative work": 1,
"green pajamas": 1,
"messy hair": 1,
"screencap redraw": 1,
"single bare shoulder": 1,
"on side": 1,
"short twintails": 1,
"breast rest": 1,
"cabbie hat": 1,
"child": 1,
"covering another's eyes": 1,
"crow": 1,
"family": 1,
"female child": 1,
"implied pornography": 1,
"ipad": 1,
"mustache": 1,
"sharp toenails": 1,
"tablet pc": 1,
"toenail polish": 1,
"aris (blue archive)": 1,
"vest": 1,
"gardevoir": 1,
"lopunny": 1,
"furry": 1,
"furry female": 1,
"white skin": 1,
"body fur": 1,
"multicolored skin": 1,
"two-tone skin": 1,
"green skin": 1,
"brown fur": 1,
"two-tone fur": 1,
"hands on hips": 1,
"purple background": 1,
"one eye covered": 1,
"animal nose": 1,
"mega pokemon": 1,
"you gonna get raped": 1,
"light trail": 1,
"depth of field": 1,
"kirlia": 1,
"split mouth": 1,
"smug": 1,
"dark": 1,
"own hands together": 1,
"contrapposto": 1,
"open belt": 1,
"pov": 1,
"girl on top": 1,
"assertive female": 1,
"naughty face": 1,
"straddling": 1,
"naked apron": 1,
"beachball": 1,
"pointing": 1,
"holding panties": 1,
"panties removed": 1,
"holding underwear": 1,
"night": 1,
"stained panties": 1,
"foreshortening": 1,
"bell": 1,
"white thighhighs": 1,
"tail ornament": 1,
"facial mark": 1,
"mask on head": 1,
"blue thighhighs": 1,
"randoseru": 1,
"blue skirt": 1,
"zettai ryouiki": 1,
"pen": 1,
"round eyewear": 1,
"holding pen": 1,
"book": 1,
"pencil": 1,
"frilled skirt": 1,
"forehead mark": 1,
"bridal gauntlets": 1,
"tanline": 1,
"strawberry": 1,
"food on body": 1,
"whipped cream": 1,
"eyebrow cut": 1,
"outline": 1,
"white outline": 1,
"pigeon-toed": 1,
"black bra": 1,
"hand between legs": 1,
"wet shirt": 1,
"sarashi": 1,
"fundoshi": 1,
"chest sarashi": 1,
"no shirt": 1,
"poke ball print": 1,
"thong": 1,
"electricity": 1,
"electrokinesis": 1,
"strapless bikini": 1,
"print bikini": 1,
"yellow footwear": 1,
"floating": 1,
"headgear": 1,
"4boys": 1,
"bettie (pokemon)": 1,
"groping": 1,
"hashtag": 1,
"holding another's wrist": 1,
"imminent gangbang": 1,
"imminent penetration": 1,
"imminent rape": 1,
"pokemonmastersex": 1,
"soft ass": 1,
"speed lines": 1,
"spoken interrobang": 1,
"squeezing": 1,
"veins": 1,
"breasts out": 1,
"perky breasts": 1,
"poke ball theme": 1,
"strap slip": 1,
"don-chan \\(usada pekora\\)": 1,
"white bow": 1,
"bridal garter": 1,
"fur scarf": 1,
"fucked silly": 1,
"blazer": 1,
"plaid skirt": 1,
"purple skirt": 1,
"shorts under skirt": 1,
"plaid": 1,
"yellow vest": 1,
"blue jacket": 1,
"purple jacket": 1,
"yellow sweater": 1,
"upskirt": 1,
"loafers": 1,
"object on head": 1,
"food on head": 1,
"short jumpsuit": 1,
"restrained": 1,
"hands on own face": 1,
"cousins": 1,
"sushi": 1,
"rosa \\(pokemon\\)": 1,
"visor cap": 1,
"raglan sleeves": 1,
"black pantyhose": 1,
"legwear under shorts": 1,
"stroking own chin": 1,
"hand on own chin": 1,
"covered navel": 1,
"finger to mouth": 1,
"handbag": 1,
"labcoat": 1,
"6+girls": 1,
"purple shirt": 1,
"high ponytail": 1,
"jack-o' challenge": 1,
"flexible": 1,
":t": 1,
"wide spread legs": 1,
"hands on ground": 1,
"arm rest": 1,
"pout": 1,
"blossom (ppg)": 1,
"cartoon network": 1,
"eyebrows": 1,
"frilled shirt": 1,
"hair strand": 1,
"light blush": 1,
"nightgown": 1,
"pink nightgown": 1,
"black bikini": 1,
"hair over breasts": 1,
"hair over one breast": 1,
"lusamine (pokemon)": 1,
"mismagius": 1,
"orange capelet": 1,
"orange gloves": 1,
"purple headwear": 1,
"breast press": 1,
"cheek-to-cheek": 1,
"arm garter": 1,
"don-chan (usada pekora)": 1,
"hololive": 1,
"allister \\(pokemon\\)": 1,
"pool": 1,
"nosebleed": 1,
"demon girl": 1,
"holding tray": 1,
"fur-trimmed capelet": 1,
"fur-trimmed headwear": 1,
"fur-trimmed mittens": 1,
"merry christmas": 1,
"mittens": 1,
"red bikini": 1,
"red capelet": 1,
"red mittens": 1,
"two-tone background": 1,
"threesome": 1,
"bisexual female": 1,
"walking": 1,
"shuten douji \\(fate\\)": 1,
"skin-covered horns": 1,
"gourd": 1,
"petals": 1,
"rotom phone": 1,
"upshirt": 1,
"upshorts": 1,
"red footwear": 1,
"thank you": 1,
"milestone celebration": 1,
"hand on own cheek": 1,
"confetti": 1,
"falling": 1,
"hip vent": 1,
"pink overalls": 1,
"rakudai ninja rantarou": 1,
"yuki (rakudai ninja rantarou)": 1,
"makeup": 1,
"bikini under clothes": 1,
"black leggings": 1,
"hand on own face": 1,
"squeezer (splatoon)": 1,
"prostitution": 1,
"afterglow": 1,
"money": 1,
"takagi-san": 1,
"lusamine \\(pokemon\\)": 1,
"purple gloves": 1,
"purple footwear": 1,
"black panties": 1,
"yellow gloves": 1,
"pussy peek": 1,
"alley": 1,
"sound effects": 1,
"splat brella (splatoon)": 1,
"splatoon 2": 1,
"splattershot \\(splatoon\\)": 1,
"green footwear": 1,
"plugsuit": 1,
"white bodysuit": 1,
"ayanami rei": 1,
"interface headset": 1,
";3": 1,
"pilot suit": 1,
";\\)": 1,
"souryuu asuka langley": 1,
"railing": 1,
"hood up": 1,
"oral": 1,
"licking nipple": 1,
"cunnilingus": 1,
"mash kyrielight \\(dangerous beast\\) \\(cosplay\\)": 1,
"mash kyrielight \\(dangerous beast\\)": 1,
"alternate color": 1,
"skin fang": 1,
"clothes writing": 1,
"print shirt": 1,
"dated": 1,
"buruma": 1,
"gym uniform": 1,
"red buruma": 1,
"single vertical stripe": 1,
"gym shirt": 1,
"gun": 1,
"holding gun": 1,
"covered clitoris": 1,
"knees apart feet together": 1,
"small nipples": 1,
"orange leotard": 1,
"jacket on shoulders": 1,
"they had lots of sex afterwards \\(meme\\)": 1,
"candle": 1,
"cake": 1,
"happy birthday": 1,
"food on face": 1,
"birthday cake": 1,
"wings": 1,
"birthday": 1,
"yellow bow": 1,
"yellow ribbon": 1,
"licking finger": 1,
"icing": 1,
"cream on face": 1,
"male focus": 1,
"water gun": 1,
"flip-flops": 1,
"dual wielding": 1,
"can": 1,
"holding can": 1,
"ramune": 1,
"iono \\(pokemon\\)": 1,
"bow-shaped hair": 1,
"character hair ornament": 1,
"sleeves past fingers": 1,
"yellow jacket": 1,
"split-color hair": 1,
"x": 1,
"very long sleeves": 1,
"single leg pantyhose": 1,
"low-tied long hair": 1,
"grey pantyhose": 1,
"grabbing": 1,
"breast grab": 1,
"white one-piece swimsuit": 1,
"low ponytail": 1,
"antennae": 1,
"blood": 1,
"arthropod girl": 1,
"bandages": 1,
"naked hoodie": 1,
"bouncing breasts": 1,
"partially visible vulva": 1,
"kamado nezuko": 1,
"kamado tanjirou": 1,
"bit gag": 1,
"gag": 1,
"scar": 1,
"bamboo": 1,
"underwear only": 1,
"pink bra": 1,
"scar on forehead": 1,
"scar on face": 1,
"siblings": 1,
"asa no ha \\(pattern\\)": 1,
"gagged": 1,
"bat print": 1,
"brown shirt": 1,
"creature on head": 1,
"grey pants": 1,
"looking up": 1,
"pumpkin print": 1,
"christmas": 1,
"nekomusume": 1,
"nekomusume \\(gegege no kitarou 6\\)": 1,
"red dress": 1,
"red bow": 1,
"covering ass": 1,
"slit pupils": 1,
"red choker": 1,
"pantylines": 1,
"polearm": 1,
"armor": 1,
"spear": 1,
"laventon (pokemon)": 1,
"rei (pokemon)": 1,
"faceless male": 1,
"holding shirt": 1,
"see-through shirt": 1,
"shirt pull": 1,
"torn pants": 1,
"oversized shirt": 1,
"holding paintbrush": 1,
"octoling girl": 1,
"spoken musical note": 1,
"musical note": 1,
"eighth note": 1,
"octarian": 1,
"black shirt": 1,
"pencil skirt": 1,
"skirt tug": 1,
">_<": 1,
"blue footwear": 1,
"holding brush": 1,
"knees up": 1,
"legs together": 1,
"mina (pokemon)": 1,
"pom pom \\(cheerleading\\)": 1,
"cheerleader": 1,
"back-to-back": 1,
"orange shirt": 1,
"grey cardigan": 1,
"green headwear": 1,
"yamper": 1,
"nurse": 1,
"fishnets": 1,
"nurse cap": 1,
"syringe": 1,
"black leotard": 1,
"crossed legs": 1,
"drinking glass": 1,
"wading": 1,
"elf": 1,
"wet dress": 1,
"aged down": 1,
"red nails": 1,
"bandaid on nose": 1,
"outstretched hand": 1,
"bandaid on face": 1,
"school swimsuit": 1,
"clenched hands": 1,
"arona (blue archive)": 1,
"blue halo": 1,
"blue serafuku": 1,
"colored inner hair": 1,
"eyes visible through hair": 1,
"light blue hair": 1,
"open shirt": 1,
"sleeping": 1,
"white ribbon": 1,
"animification": 1,
"robot": 1,
"silk": 1,
"spider web": 1,
"spider": 1,
"legs up": 1,
"black necktie": 1,
"phone screen": 1,
"clothes removed": 1,
"shirt removed": 1,
"fake screenshot": 1,
"timestamp": 1,
"chocolate": 1,
"candy": 1,
"heart-shaped chocolate": 1,
"bandaids on nipples": 1,
"pasties": 1,
"blue pajamas": 1,
"bubbles (ppg)": 1,
"tired": 1,
"gengar": 1,
"flipped hair": 1,
"torn dress": 1,
"topknot": 1,
"multicolored dress": 1,
"purple dress": 1,
"multicolored clothes": 1,
"tiptoes": 1,
"cumdrip": 1,
"constricted pupils": 1,
"gotcha!": 1,
"t": 1,
"garter belt": 1,
"garter straps": 1,
"leaning to the side": 1,
"liquid": 1,
"spill": 1,
"bare back": 1,
"implied erection": 1,
"sideboob": 1,
"chain": 1,
"asymmetrical clothes": 1,
"torn cape": 1,
"digimon \\(creature\\)": 1,
"clothing cutout": 1,
"goggles": 1,
"cleavage cutout": 1,
"cloak": 1,
"ousaka shizuku": 1,
"futanari": 1,
"sex": 1,
"covering mouth": 1,
"x-ray": 1,
"standing sex": 1,
"marnie \\(pokemon\\)": 1,
"black nails": 1,
"ass focus": 1,
"heart hands": 1,
"spoken heart": 1,
"ikamusume": 1,
"sundress": 1,
"see-through silhouette": 1,
"popsicle": 1,
"sexually suggestive": 1,
"sun hat": 1,
"incoming gift": 1,
"giving": 1,
"holding condom": 1,
"holding gift": 1,
"nipple tweak": 1,
"head back": 1,
"hau \\(pokemon\\)": 1,
"swim trunks": 1,
"towel": 1,
"fan speaking": 1,
"half-closed eye": 1,
"puffy long sleeves": 1,
"round teeth": 1,
"kuroki tomoko": 1,
"vaginal": 1,
"pink footwear": 1,
"thought bubble": 1,
"novelty censor": 1,
"mallow (pokemon)": 1,
"leash": 1,
"nipple piercing": 1,
"spread pussy": 1,
"humiliation": 1,
"piercing": 1,
"ass visible through thighs": 1,
"talking": 1,
"clitoris": 1,
"crowd": 1,
"slave": 1,
"bdsm": 1,
"holding leash": 1,
"people": 1,
"pink pajamas": 1,
"pink pants": 1,
"white pupils": 1,
"whistle around neck": 1,
"butterfly hair ornament": 1,
"dragon print": 1,
"half gloves": 1,
"kisaki (blue archive)": 1,
"waist cape": 1,
"drink": 1,
"pocky": 1,
"downblouse": 1,
"pocky day": 1,
"food in mouth": 1,
"in container": 1,
"in box": 1,
"cardboard box": 1,
"brown pantyhose": 1,
"striped pantyhose": 1,
"puckered lips": 1,
"w": 1,
"coin": 1,
"coin on string": 1,
"dialogue box": 1,
"gen 1 pokemon": 1,
"hypno": 1,
"hypnosis": 1,
"identity censor": 1,
"japanese text": 1,
"mosaic censoring": 1,
"spring onion": 1,
"hatsune miku": 1,
"riding": 1,
"vegetable": 1,
"holding vegetable": 1,
"riding pokemon": 1,
"crossover": 1,
"sparkling eyes": 1,
"grey shirt": 1,
"headphones": 1,
"thigh boots": 1,
"collared shirt": 1,
"duck": 1,
"green necktie": 1,
"blush stickers": 1,
"black sleeves": 1,
"aqua necktie": 1,
"pee": 1,
"pussy juice puddle": 1,
"puffy short sleeves": 1,
"agent 3 (splatoon 3)": 1,
"bow (weapon)": 1,
"holding bow (weapon)": 1,
"splatoon 3": 1,
"torn shorts": 1,
"dark blue hair": 1,
"dawn (pokemon)": 1,
"pink skirt": 1,
"pokemon dppt": 1,
"dusk ball": 1,
"head rest": 1,
"swimsuit under clothes": 1,
"the pose": 1,
"false smile": 1,
"pokemon bw2": 1,
"panties under shorts": 1,
"panty peek": 1,
"breasts apart": 1,
"text focus": 1,
"pokemon tail": 1,
"boxers": 1,
"male underwear": 1,
"rowlet": 1,
"blouse": 1,
"cat girl": 1,
"claws": 1,
"digimon (creature)": 1
}
},
"ss_batch_size_per_device": "1",
"ss_bucket_info": {
"buckets": {
"0": {
"resolution": [
384,
832
],
"count": 6
},
"1": {
"resolution": [
448,
576
],
"count": 2
},
"2": {
"resolution": [
448,
640
],
"count": 2
},
"3": {
"resolution": [
448,
768
],
"count": 2
},
"4": {
"resolution": [
448,
832
],
"count": 4
},
"5": {
"resolution": [
448,
896
],
"count": 4
},
"6": {
"resolution": [
448,
960
],
"count": 2
},
"7": {
"resolution": [
448,
1024
],
"count": 2
},
"8": {
"resolution": [
512,
704
],
"count": 48
},
"9": {
"resolution": [
512,
768
],
"count": 88
},
"10": {
"resolution": [
512,
832
],
"count": 36
},
"11": {
"resolution": [
512,
896
],
"count": 32
},
"12": {
"resolution": [
576,
384
],
"count": 4
},
"13": {
"resolution": [
576,
448
],
"count": 2
},
"14": {
"resolution": [
576,
512
],
"count": 6
},
"15": {
"resolution": [
576,
576
],
"count": 4
},
"16": {
"resolution": [
576,
704
],
"count": 20
},
"17": {
"resolution": [
576,
768
],
"count": 160
},
"18": {
"resolution": [
576,
832
],
"count": 4
},
"19": {
"resolution": [
640,
640
],
"count": 2
},
"20": {
"resolution": [
704,
576
],
"count": 4
},
"21": {
"resolution": [
704,
640
],
"count": 12
},
"22": {
"resolution": [
768,
576
],
"count": 12
},
"23": {
"resolution": [
832,
512
],
"count": 2
}
},
"mean_img_ar_error": 0.02801541650216989
},
"ss_bucket_no_upscale": "True",
"ss_cache_latents": "True",
"ss_caption_dropout_every_n_epochs": "0",
"ss_caption_dropout_rate": "0.0",
"ss_caption_tag_dropout_rate": "0.0",
"ss_color_aug": "False",
"ss_dataset_dirs": {
"2_All": {
"n_repeats": 2,
"img_count": 230
}
},
"ss_enable_bucket": "True",
"ss_epoch": "8",
"ss_face_crop_aug_range": "None",
"ss_flip_aug": "True",
"ss_full_fp16": "False",
"ss_gradient_accumulation_steps": "1",
"ss_gradient_checkpointing": "False",
"ss_keep_tokens": "1",
"ss_learning_rate": "0.00016",
"ss_lowram": "False",
"ss_lr_scheduler": "cosine_with_restarts",
"ss_lr_warmup_steps": "368",
"ss_max_bucket_reso": "1024",
"ss_max_grad_norm": "1.0",
"ss_max_token_length": "150",
"ss_max_train_steps": "3680",
"ss_min_bucket_reso": "320",
"ss_mixed_precision": "fp16",
"ss_network_alpha": "16.0",
"ss_network_dim": "32",
"ss_network_module": "sd_scripts.networks.lora",
"ss_new_sd_model_hash": "a7529df02340e5b4c3870c894c1ae84f22ea7b37fd0633e5bacfad9618228032",
"ss_noise_offset": "None",
"ss_num_batches_per_epoch": "460",
"ss_num_epochs": "8",
"ss_num_reg_images": "0",
"ss_optimizer": "bitsandbytes.optim.adamw.AdamW8bit(weight_decay=0.1,betas=(0.9, 0.99))",
"ss_output_name": "TER",
"ss_prior_loss_weight": "1.0",
"ss_random_crop": "False",
"ss_reg_dataset_dirs": {},
"ss_sd_model_hash": "e6e8e1fc",
"ss_sd_scripts_commit_hash": "7c1cf7f4eaf011e3c90e163049f85bdbadb75ef2",
"ss_seed": "23",
"ss_session_id": "796101675",
"ss_shuffle_caption": "True",
"ss_text_encoder_lr": "3e-05",
"ss_total_batch_size": "1",
"ss_training_comment": "TER",
"ss_training_finished_at": "1682577948.1899827",
"ss_training_started_at": "1682574966.2806835",
"ss_unet_lr": "0.00016",
"ss_v2": "False",
"sshs_legacy_hash": "ed07632e",
"sshs_model_hash": "081239d7b1d9654ccd279e557eddc1a8b7e420b5d9e75b81e161ea5a145a65a3"
} |