File size: 24,545 Bytes
3b14f14 |
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 |
{
"modelspec.architecture": "stable-diffusion-xl-v1-base/lora",
"modelspec.date": "2024-07-09T12:25:17",
"modelspec.implementation": "https://github.com/Stability-AI/generative-models",
"modelspec.prediction_type": "epsilon",
"modelspec.resolution": "512x512",
"modelspec.sai_model_spec": "1.0.0",
"modelspec.title": "death",
"ss_adaptive_noise_scale": null,
"ss_base_model_version": "sdxl_base_v1-0",
"ss_batch_size_per_device": 8,
"ss_bucket_info": {
"buckets": {
"0": {
"count": 2,
"resolution": [
384,
640
]
},
"1": {
"count": 10,
"resolution": [
416,
608
]
},
"2": {
"count": 9,
"resolution": [
448,
576
]
},
"3": {
"count": 6,
"resolution": [
480,
544
]
},
"4": {
"count": 4,
"resolution": [
512,
512
]
},
"5": {
"count": 4,
"resolution": [
544,
480
]
},
"6": {
"count": 4,
"resolution": [
576,
448
]
},
"7": {
"count": 5,
"resolution": [
608,
416
]
},
"8": {
"count": 1,
"resolution": [
640,
384
]
},
"9": {
"count": 3,
"resolution": [
672,
384
]
}
},
"mean_img_ar_error": 0.03274204758739792
},
"ss_bucket_no_upscale": false,
"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_clip_skip": null,
"ss_color_aug": false,
"ss_dataset_dirs": {
"1_dth": {
"img_count": 48,
"n_repeats": 1
}
},
"ss_debiased_estimation": false,
"ss_enable_bucket": true,
"ss_epoch": 400,
"ss_face_crop_aug_range": null,
"ss_flip_aug": true,
"ss_full_fp16": false,
"ss_gradient_accumulation_steps": 6,
"ss_gradient_checkpointing": true,
"ss_huber_c": 0.1,
"ss_huber_schedule": "snr",
"ss_ip_noise_gamma": null,
"ss_ip_noise_gamma_random_strength": false,
"ss_keep_tokens": 0,
"ss_learning_rate": 0.0001,
"ss_loss_type": "l2",
"ss_lowram": true,
"ss_lr_scheduler": "cosine",
"ss_lr_warmup_steps": 0,
"ss_max_bucket_reso": 1024,
"ss_max_grad_norm": 1.0,
"ss_max_token_length": null,
"ss_max_train_steps": 400,
"ss_min_bucket_reso": 256,
"ss_min_snr_gamma": null,
"ss_mixed_precision": "fp16",
"ss_multires_noise_discount": 0.1,
"ss_multires_noise_iterations": 10,
"ss_network_alpha": 4.0,
"ss_network_args": {
"algo": "locon",
"conv_alpha": "4",
"conv_dim": "256",
"dora_wd": "False",
"dropout": 0.0,
"module_dropout": "0",
"preset": "full",
"rank_dropout": "0",
"rank_dropout_scale": "False",
"train_norm": "False",
"use_scalar": "False",
"use_tucker": "False"
},
"ss_network_dim": 8,
"ss_network_dropout": 0.0,
"ss_network_module": "lycoris.kohya",
"ss_new_sd_model_hash": "5e153c118b9f96414b33d7dc60576cdf76bf25f4710228655247589f1085d57e",
"ss_noise_offset": null,
"ss_noise_offset_random_strength": false,
"ss_num_batches_per_epoch": 6,
"ss_num_epochs": 400,
"ss_num_reg_images": 0,
"ss_num_train_images": 48,
"ss_optimizer": "torch.optim.adamw.AdamW",
"ss_output_name": "death",
"ss_prior_loss_weight": 1.0,
"ss_random_crop": false,
"ss_reg_dataset_dirs": {},
"ss_resolution": "(512, 512)",
"ss_scale_weight_norms": 1.0,
"ss_sd_model_hash": "b2d8e6f4",
"ss_sd_model_name": "c.safetensors",
"ss_sd_scripts_commit_hash": "25f961bc779bc79aef440813e3e8e92244ac5739",
"ss_seed": 3785538658,
"ss_session_id": 3896483160,
"ss_shuffle_caption": true,
"ss_steps": 400,
"ss_tag_frequency": {
"1_dth": {
"3 toes": 1,
"4 fingers": 4,
"4 toes": 10,
"5 fingers": 8,
"abdominal bulge": 4,
"abs": 13,
"abstract background": 1,
"absurd res": 10,
"after anal": 3,
"after kiss": 1,
"after masturbation": 1,
"after sex": 2,
"against surface": 2,
"ahegao": 2,
"all fours": 1,
"anal": 10,
"anal beads": 1,
"anal beads in urethra": 1,
"anal juice": 1,
"anal knotting": 1,
"anal orgasm": 3,
"anal penetration": 10,
"angry": 1,
"animal genitalia": 19,
"animal penis": 19,
"anon": 1,
"anthro": 48,
"anthro on anthro": 14,
"anthro penetrated": 13,
"anthro penetrating": 13,
"anthro penetrating anthro": 13,
"anus": 10,
"areola": 3,
"arm strap": 1,
"arm wrapping": 3,
"arm wraps": 10,
"armband": 1,
"armpit hair": 2,
"armpit tuft": 1,
"arms bent": 1,
"arms tied": 1,
"armwear": 2,
"aroused": 3,
"ass to ass": 1,
"ass to mouth": 1,
"athletic": 2,
"back muscles": 1,
"backsack": 7,
"ball fondling": 1,
"ball ring": 2,
"ball size difference": 4,
"ball tuft": 1,
"balls": 35,
"bar": 6,
"bar counter": 1,
"bar stool": 4,
"barazoku": 1,
"bare breasts": 1,
"bared teeth": 2,
"barefoot": 1,
"barrel": 1,
"bdsm": 3,
"bed": 2,
"bedroom eyes": 4,
"bedroom sex": 1,
"bell": 1,
"bell collar": 1,
"belly": 1,
"belly expansion": 1,
"belly hair": 1,
"belly tuft": 1,
"belt": 2,
"beverage": 3,
"biceps": 3,
"big anus": 1,
"big balls": 11,
"big breasts": 4,
"big bulge": 1,
"big butt": 1,
"big dom small sub": 4,
"big penis": 17,
"big sheath": 1,
"biped": 12,
"bite": 1,
"black anus": 1,
"black body": 3,
"black border": 3,
"black claws": 3,
"black cloak": 2,
"black clothing": 3,
"black eyebrows": 1,
"black footwear": 1,
"black fur": 3,
"black hood": 1,
"black hoodie": 1,
"black nipples": 2,
"black nose": 15,
"black pawpads": 2,
"black penis": 1,
"black sclera": 17,
"black shoes": 1,
"black topwear": 1,
"blade": 2,
"blaidd \\(elden ring\\)": 1,
"blurred background": 1,
"blush": 13,
"blush lines": 4,
"blushing profusely": 1,
"bodily fluids": 31,
"body hair": 2,
"bondage": 3,
"boots": 4,
"border": 3,
"bottle": 2,
"bottomless": 7,
"bottomless anthro": 3,
"bottomless male": 5,
"bottomwear": 6,
"bottomwear down": 1,
"bound": 3,
"breasts": 8,
"breasts apart": 1,
"breath": 2,
"brown hair": 2,
"bulge": 4,
"butt": 11,
"butt from the front": 1,
"butt pose": 1,
"by agitype01": 1,
"by angiewolf": 1,
"by bakemonoy": 1,
"by braeburned": 1,
"by canyne khai": 3,
"by chicobo": 1,
"by cocoline": 1,
"by dry skeleton": 2,
"by eternity-zinogre": 1,
"by exsys": 1,
"by f-r95": 1,
"by idrysse3": 1,
"by impwitter": 1,
"by jacko18": 1,
"by jacqui clk": 1,
"by jumpy jackal": 1,
"by kopyorh": 2,
"by kraaisha": 2,
"by mekaska": 1,
"by munie": 2,
"by notafurrytho": 1,
"by patto": 1,
"by poofroom": 1,
"by psakorn tnoi": 2,
"by raaz": 1,
"by seibear": 1,
"by severeni": 1,
"by silviaxrk": 2,
"by ssssnowy": 1,
"by tavyapl": 1,
"by tenebscuro": 1,
"by them nasties": 1,
"by toroi": 1,
"by vhkansfweer": 1,
"by vorusuarts": 1,
"by zackary911": 2,
"by zerpreros": 1,
"by zex": 1,
"by zinnick": 1,
"candle": 5,
"canid": 48,
"canid demon": 2,
"canine": 48,
"canine genitalia": 19,
"canine penis": 19,
"canis": 48,
"cape": 9,
"chain": 1,
"chair": 3,
"cheek tuft": 8,
"chest fur": 1,
"chest tuft": 2,
"circumcised": 1,
"claw marks": 1,
"claws": 31,
"clenched teeth": 2,
"cloak": 16,
"cloak only": 1,
"close-up": 1,
"clothed": 20,
"clothed male": 1,
"clothed sex": 1,
"clothed/nude": 1,
"clothing": 35,
"clothing aside": 1,
"clothing lift": 1,
"clothing on ground": 1,
"cock and balls blowjob": 1,
"collar": 4,
"colored": 1,
"command": 1,
"command to enjoy": 1,
"condom": 1,
"condom in ass": 1,
"condom inside": 1,
"condom left in": 1,
"container": 5,
"controller": 1,
"counter": 4,
"cowgirl position": 1,
"crossed legs": 1,
"crossgender": 7,
"crossover": 2,
"crossover ship": 1,
"crouching": 4,
"cum": 17,
"cum blockage": 1,
"cum drip": 4,
"cum expulsion": 1,
"cum fart": 1,
"cum from ass": 3,
"cum from nose": 1,
"cum in ass": 8,
"cum in mouth": 3,
"cum in nose": 1,
"cum in pussy": 1,
"cum in sex toy": 1,
"cum in top's ass": 1,
"cum inflation": 2,
"cum inside": 11,
"cum on balls": 2,
"cum on bed": 1,
"cum on body": 1,
"cum on face": 2,
"cum on ground": 2,
"cum on penis": 4,
"cum on tail": 1,
"cum overflow": 2,
"cum splatter": 1,
"cum string": 2,
"cum while penetrated": 2,
"cumshot": 2,
"cup": 4,
"curvy figure": 2,
"death \\(puss in boots\\)": 48,
"deep penetration": 1,
"deep throat": 1,
"defeated": 1,
"demon": 2,
"detailed": 1,
"detailed background": 6,
"dialogue": 16,
"different sound effects": 1,
"digital drawing \\(artwork\\)": 1,
"digital media \\(artwork\\)": 19,
"digital painting \\(artwork\\)": 1,
"digitigrade": 5,
"dirty talk": 1,
"distracting watermark": 1,
"domestic cat": 14,
"domestic dog": 1,
"dominant": 5,
"dominant male": 1,
"draw their faces in your style": 1,
"dreamworks": 48,
"drinking": 1,
"drinking cum": 1,
"drinking glass": 2,
"dripping": 8,
"dripping milk": 1,
"drooling": 6,
"drunk": 2,
"dth": 48,
"dual wielding": 4,
"duo": 22,
"ears down": 2,
"ejaculation": 7,
"elden ring": 1,
"electronics": 1,
"emanata": 2,
"embarrassed": 1,
"english text": 15,
"erection": 23,
"evil grin": 1,
"expansion": 1,
"exposed feet": 1,
"eye mist": 1,
"eye roll": 2,
"eyebrows": 2,
"eyelashes": 1,
"eyeliner": 1,
"eyes closed": 3,
"facial markings": 12,
"facial scar": 1,
"facial tuft": 8,
"fairy tales": 2,
"fangs": 8,
"feathers": 1,
"featureless chest": 1,
"feet": 14,
"felid": 14,
"feline": 14,
"felis": 14,
"fellatio": 5,
"female": 9,
"female on top": 1,
"female penetrated": 2,
"filled condom": 1,
"finger claws": 5,
"finger in mouth": 1,
"fingerless gloves": 1,
"fingers": 15,
"first person view": 1,
"flat chested": 1,
"fluffy": 9,
"fluffy tail": 5,
"flustered": 1,
"fondling": 1,
"fondling penis": 2,
"foot wraps": 2,
"footwear": 5,
"footwear only": 1,
"forced": 2,
"foreskin": 5,
"french kissing": 1,
"from behind position": 3,
"from front position": 2,
"fromsoftware": 1,
"front view": 1,
"frottage": 1,
"fucked silly": 2,
"full-length portrait": 1,
"fully bound": 1,
"fur": 43,
"furniture": 11,
"fuzzy": 6,
"fuzzy balls": 1,
"game controller": 1,
"gaming": 1,
"gaming while penetrated": 1,
"genital danger play": 1,
"genital fluids": 28,
"genital outline": 1,
"genitals": 46,
"glans": 2,
"glass": 3,
"glass container": 3,
"glass cup": 3,
"glistening": 1,
"glistening genitalia": 1,
"glistening penis": 1,
"gloves": 1,
"glowing": 3,
"glowing eyes": 3,
"good boy": 3,
"good guy loses": 1,
"grass": 1,
"green eyes": 8,
"green sclera": 1,
"grey body": 28,
"grey fur": 27,
"grey hair": 2,
"grin": 11,
"growling": 1,
"hair": 5,
"half-closed eyes": 4,
"hand on back": 1,
"hand on head": 2,
"hand on leg": 1,
"hand on neck": 2,
"hand on own balls": 1,
"hand on penis": 4,
"hand over shoulder": 1,
"hand wraps": 1,
"handjob": 2,
"hands behind back": 1,
"hands tied": 2,
"hands-free": 3,
"handwear": 1,
"hanging breasts": 1,
"happy": 3,
"happy sex": 1,
"hat": 9,
"head markings": 12,
"head tuft": 2,
"headgear": 10,
"headgear only": 1,
"headwear": 10,
"headwear only": 1,
"heart after text": 1,
"heart symbol": 8,
"hellhound": 2,
"helluva boss": 2,
"hi res": 43,
"hindpaw": 2,
"holding beverage": 1,
"holding controller": 1,
"holding game controller": 1,
"holding knot root": 1,
"holding neck": 1,
"holding object": 17,
"holding own penis": 1,
"holding partner": 3,
"holding penis": 6,
"holding sex toy": 1,
"holding weapon": 10,
"hood": 3,
"hood up": 1,
"hooded cloak": 2,
"hoodie": 2,
"hoodie only": 1,
"huge balls": 3,
"huge penis": 4,
"human": 1,
"humanoid genitalia": 19,
"humanoid hands": 2,
"humanoid penis": 19,
"imminent knotting": 1,
"imminent sex": 1,
"inflation": 2,
"inner ear fluff": 2,
"inside": 7,
"interspecies": 4,
"intraspecies": 1,
"jingle bell": 1,
"kissing": 1,
"kitty softpaws": 1,
"kneeling": 3,
"kneeling oral position": 2,
"knife play": 1,
"knot": 17,
"knot fucking": 1,
"knot hanging": 1,
"knot root": 2,
"knotting": 2,
"lactating": 1,
"large penetration": 2,
"larger anthro": 2,
"larger male": 5,
"larger penetrated": 1,
"leaking": 1,
"leaking cum": 3,
"leaking precum": 2,
"leaning": 3,
"leaning backward": 2,
"leaning on another": 1,
"leash": 1,
"leg grab": 1,
"leg wrap": 3,
"leg wraps": 6,
"legs tied": 1,
"legs up": 1,
"legwear": 2,
"licking": 9,
"licking lips": 8,
"licking own lips": 2,
"long ears": 1,
"looking at another": 6,
"looking at genitalia": 2,
"looking at partner": 4,
"looking at penis": 2,
"looking at viewer": 21,
"looking away": 1,
"looking back": 4,
"looking back at viewer": 2,
"looking down": 1,
"looking pleasured": 9,
"looking up": 2,
"loona \\(helluva boss\\)": 1,
"low-angle view": 3,
"lying": 7,
"lying on sofa": 1,
"makeup": 1,
"making out": 1,
"male": 41,
"male anthro": 13,
"male focus": 2,
"male human": 1,
"male on anthro": 2,
"male penetrated": 13,
"male penetrating": 15,
"male penetrating female": 2,
"male penetrating male": 13,
"male pov": 1,
"male/female": 2,
"male/male": 19,
"mammal": 48,
"markings": 15,
"mask \\(marking\\)": 12,
"mating press": 1,
"melee weapon": 11,
"milk": 4,
"missionary position": 1,
"mostly nude": 4,
"mostly nude anthro": 1,
"motion lines": 5,
"mtf crossgender": 6,
"mug": 1,
"multicolored body": 5,
"multicolored fur": 5,
"multiple orgasms": 1,
"multiple poses": 1,
"muscular": 25,
"muscular anthro": 19,
"muscular male": 24,
"muscular sub": 2,
"mutual masturbation": 1,
"muzzle \\(object\\)": 1,
"muzzled": 1,
"mythological canine": 2,
"mythological creature": 2,
"mythology": 2,
"narrowed eyes": 12,
"navel": 3,
"neck grab": 2,
"neck tuft": 9,
"nervous": 1,
"night": 1,
"nipples": 24,
"nsfw": 46,
"nude": 11,
"obliques": 4,
"on back": 3,
"on bottom": 2,
"on chair": 2,
"on front": 2,
"on lap": 1,
"on side": 1,
"on sofa": 1,
"on top": 4,
"one eye closed": 2,
"one leg up": 1,
"onomatopoeia": 1,
"open bottomwear": 3,
"open clothing": 3,
"open mouth": 23,
"open pants": 3,
"open smile": 2,
"oral": 5,
"oral penetration": 4,
"orange body": 12,
"orange fur": 12,
"orange hair": 2,
"orgasm": 4,
"orgasm from oral": 1,
"outline heart": 1,
"oversized oral": 1,
"pants": 6,
"pants down": 1,
"pantsless": 1,
"partially clothed": 7,
"patreon": 1,
"patreon logo": 1,
"patreon username": 2,
"pawpads": 7,
"paws": 6,
"pecs": 9,
"penetrable sex toy": 1,
"penetrating pov": 1,
"penetration": 17,
"penile": 16,
"penile penetration": 14,
"penile spines": 1,
"penis": 36,
"penis awe": 1,
"penis backwards": 1,
"penis base": 1,
"penis bite": 1,
"penis in ass": 6,
"penis in pussy": 1,
"penis lick": 1,
"penis size difference": 2,
"penis sway": 1,
"perineum": 5,
"pink anus": 1,
"pink areola": 1,
"pink glans": 2,
"pink nipples": 3,
"pink pawpads": 2,
"pink penis": 3,
"pink pussy": 1,
"pinned": 1,
"pinned to ground": 1,
"pivoted ears": 2,
"plant": 1,
"playing video game": 1,
"playstation": 1,
"playstation controller": 1,
"polearm": 2,
"poncho": 8,
"pop \\(sound effect\\)": 2,
"portrait": 2,
"pose": 2,
"power bottom": 1,
"praise": 2,
"precum": 12,
"precum drip": 3,
"precum on finger": 1,
"precum string": 5,
"predator/prey": 2,
"presenting": 10,
"presenting anus": 2,
"presenting balls": 1,
"presenting breasts": 1,
"presenting hindquarters": 4,
"presenting penis": 5,
"prick ears": 2,
"pubes": 3,
"public": 1,
"public nudity": 1,
"pupils": 3,
"pupnacious": 1,
"puss in boots \\(character\\)": 12,
"puss in boots \\(dreamworks\\)": 48,
"pussy": 8,
"questionable": 1,
"questionable consent": 1,
"raised clothing": 1,
"raised hoodie": 1,
"raised leg": 3,
"raised tail": 2,
"raised topwear": 1,
"rape face": 1,
"rapier": 1,
"reaching": 1,
"reaching out": 1,
"rear view": 4,
"receiving pov": 1,
"red eyes": 41,
"red penis": 1,
"red sclera": 3,
"red sky": 1,
"redraw": 1,
"restraints": 2,
"retracted foreskin": 1,
"reverse cowgirl position": 1,
"reverse piledriver position": 1,
"ridiculous fit": 2,
"rope": 2,
"rope bondage": 2,
"rough sex": 2,
"safe": 1,
"saggy balls": 2,
"saliva": 10,
"saliva drip": 1,
"saliva on tongue": 1,
"saliva string": 4,
"scar": 4,
"scary face": 1,
"seductive": 7,
"serratus": 3,
"sex": 18,
"sex toy": 2,
"sex toy in urethra": 1,
"sex toy insertion": 1,
"sexual barrier device": 1,
"shaded": 1,
"shaking": 1,
"shaking penis": 1,
"sharp fangs": 1,
"sharp teeth": 13,
"sheath": 3,
"shirtless": 1,
"shirtless anthro": 1,
"shirtless male": 1,
"shocked": 1,
"shoes": 1,
"shoes only": 1,
"short": 1,
"short anthro": 1,
"short male": 1,
"showing teeth": 2,
"shy": 1,
"sickle": 21,
"signature": 5,
"silver hair": 1,
"simple background": 9,
"sit and blow position": 2,
"sitting": 7,
"sitting on chair": 2,
"sitting on ground": 3,
"sitting together": 1,
"size difference": 15,
"size play": 2,
"skinny": 1,
"sky": 1,
"sloppy kiss": 1,
"small balls": 1,
"smaller anthro": 2,
"smaller female": 1,
"smaller male": 4,
"smaller penetrated": 7,
"smile": 23,
"smirk": 2,
"smug": 1,
"snarling": 1,
"snout": 2,
"sofa": 1,
"solo": 27,
"solo focus": 1,
"sombrero": 2,
"sony corporation": 1,
"sony interactive entertainment": 1,
"sound effects": 5,
"sounding beads": 1,
"sounding rod": 1,
"speech bubble": 2,
"spiked collar": 1,
"spikes": 1,
"spilled beverage": 1,
"spilled drink": 1,
"spilled liquid": 1,
"spilled milk": 1,
"spit-take": 1,
"spitting": 1,
"spitting drink": 1,
"spots": 1,
"spotted body": 1,
"spotted fur": 1,
"spread butt": 1,
"spread legs": 8,
"spread toes": 1,
"spreading": 9,
"spurting sound effect": 1,
"standing": 2,
"steam": 1,
"stockings": 1,
"stool": 6,
"story": 1,
"story in description": 1,
"stretched anus": 1,
"stretched pussy": 1,
"striped body": 2,
"striped markings": 2,
"stripes": 4,
"stylized": 1,
"submissive": 4,
"submissive male": 1,
"substance intoxication": 2,
"suggestive": 1,
"suggestive look": 1,
"suspension": 1,
"suspension bondage": 1,
"swallowing sound effect": 1,
"sweat": 4,
"sweatdrop": 1,
"sword": 1,
"sword in penis": 1,
"tabby cat": 5,
"table": 5,
"tail": 17,
"tail around arm": 1,
"tail around wrist": 1,
"tail grab": 1,
"talking to viewer": 3,
"tape": 1,
"tape muzzle": 1,
"tavern": 2,
"tears": 1,
"tears of pleasure": 1,
"teemo the yiffer": 1,
"teeth": 31,
"testicle cuff": 1,
"text": 18,
"text with heart": 1,
"thick penis": 2,
"thick thighs": 5,
"three-quarter portrait": 1,
"three-quarter view": 1,
"thrust lines": 1,
"thrusting": 1,
"tight fit": 4,
"toe claws": 10,
"toes": 14,
"tongue": 25,
"tongue out": 21,
"topless": 1,
"topless anthro": 1,
"topless male": 1,
"topwear": 3,
"topwear only": 1,
"touching penis": 1,
"translated": 1,
"trembling": 1,
"tuft": 14,
"two tone body": 5,
"two tone fur": 5,
"undersized oral": 1,
"underwear": 4,
"underwear aside": 1,
"undressing": 1,
"undressing self": 1,
"uneven balls": 1,
"upside down": 1,
"upside down fellatio": 1,
"urethral": 1,
"urethral penetration": 1,
"url": 2,
"vaginal": 1,
"vaginal fluids": 3,
"vaginal penetration": 1,
"vein": 11,
"veiny knot": 1,
"veiny penis": 9,
"voluptuous": 2,
"vortex \\(helluva boss\\)": 1,
"watermark": 1,
"weapon": 22,
"weapon penetration": 1,
"whiskers": 7,
"white background": 1,
"white balls": 5,
"white body": 32,
"white eyes": 2,
"white fur": 32,
"white hair": 2,
"white perineum": 1,
"white pupils": 3,
"wide eyed": 2,
"wide hips": 5,
"widescreen": 1,
"wiggling cock": 1,
"window": 2,
"wink": 1,
"wireless controller": 1,
"wishbone mouth": 1,
"wolf": 48,
"wood": 1,
"wood furniture": 1,
"wood table": 1,
"worm's-eye view": 1,
"wrapped arms": 4,
"wrapped legs": 1,
"wraps": 15,
"wrist wraps": 1,
"xray view": 1
}
},
"ss_text_encoder_lr": 0.0001,
"ss_total_batch_size": 96,
"ss_training_comment": null,
"ss_training_finished_at": 1720527917.540801,
"ss_training_started_at": 1720516882.0062273,
"ss_unet_lr": 0.0001,
"ss_v2": false,
"ss_zero_terminal_snr": false,
"sshs_model_hash": "0x64bb8a9e7a789eab1ecb0c6b3842192927379d0169f17b81886cc2f81fd12ce1"
} |