File size: 48,406 Bytes
b5d3e34 03bde3c b5d3e34 03bde3c b5d3e34 03bde3c b5d3e34 |
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 |
---
license: creativeml-openrail-m
base_model: "stabilityai/stable-diffusion-3-medium-diffusers"
tags:
- stable-diffusion
- stable-diffusion-diffusers
- text-to-image
- diffusers
- full
inference: true
widget:
- text: 'unconditional (blank prompt)'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_0_0.png
- text: 'unconditional (blank prompt)'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_1_1.png
- text: 'unconditional (blank prompt)'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_2_2.png
- text: 'unconditional (blank prompt)'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_3_3.png
- text: 'Alien planet, strange rock formations, glowing plants, bizarre creatures, surreal atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_4_0.png
- text: 'Alien planet, strange rock formations, glowing plants, bizarre creatures, surreal atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_5_1.png
- text: 'Alien planet, strange rock formations, glowing plants, bizarre creatures, surreal atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_6_2.png
- text: 'Alien planet, strange rock formations, glowing plants, bizarre creatures, surreal atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_7_3.png
- text: 'Alien marketplace, bizarre creatures, exotic goods, vibrant colors, otherworldly atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_8_0.png
- text: 'Alien marketplace, bizarre creatures, exotic goods, vibrant colors, otherworldly atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_9_1.png
- text: 'Alien marketplace, bizarre creatures, exotic goods, vibrant colors, otherworldly atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_10_2.png
- text: 'Alien marketplace, bizarre creatures, exotic goods, vibrant colors, otherworldly atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_11_3.png
- text: 'Child holding a balloon, happy expression, colorful balloons, sunny day, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_12_0.png
- text: 'Child holding a balloon, happy expression, colorful balloons, sunny day, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_13_1.png
- text: 'Child holding a balloon, happy expression, colorful balloons, sunny day, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_14_2.png
- text: 'Child holding a balloon, happy expression, colorful balloons, sunny day, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_15_3.png
- text: 'a 4-panel comic strip showing an orange cat saying the words ''HELP'' and ''LASAGNA'''
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_16_0.png
- text: 'a 4-panel comic strip showing an orange cat saying the words ''HELP'' and ''LASAGNA'''
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_17_1.png
- text: 'a 4-panel comic strip showing an orange cat saying the words ''HELP'' and ''LASAGNA'''
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_18_2.png
- text: 'a 4-panel comic strip showing an orange cat saying the words ''HELP'' and ''LASAGNA'''
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_19_3.png
- text: 'a hand is holding a comic book with a cover that reads ''The Adventures of Superhero'''
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_20_0.png
- text: 'a hand is holding a comic book with a cover that reads ''The Adventures of Superhero'''
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_21_1.png
- text: 'a hand is holding a comic book with a cover that reads ''The Adventures of Superhero'''
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_22_2.png
- text: 'a hand is holding a comic book with a cover that reads ''The Adventures of Superhero'''
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_23_3.png
- text: 'Underground cave filled with crystals, glowing lights, reflective surfaces, fantasy environment, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_24_0.png
- text: 'Underground cave filled with crystals, glowing lights, reflective surfaces, fantasy environment, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_25_1.png
- text: 'Underground cave filled with crystals, glowing lights, reflective surfaces, fantasy environment, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_26_2.png
- text: 'Underground cave filled with crystals, glowing lights, reflective surfaces, fantasy environment, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_27_3.png
- text: 'Bustling cyberpunk bazaar, vendors, neon signs, advanced tech, crowded, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_28_0.png
- text: 'Bustling cyberpunk bazaar, vendors, neon signs, advanced tech, crowded, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_29_1.png
- text: 'Bustling cyberpunk bazaar, vendors, neon signs, advanced tech, crowded, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_30_2.png
- text: 'Bustling cyberpunk bazaar, vendors, neon signs, advanced tech, crowded, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_31_3.png
- text: 'Cyberpunk hacker in a dark room, neon glow, multiple screens, intense focus, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_32_0.png
- text: 'Cyberpunk hacker in a dark room, neon glow, multiple screens, intense focus, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_33_1.png
- text: 'Cyberpunk hacker in a dark room, neon glow, multiple screens, intense focus, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_34_2.png
- text: 'Cyberpunk hacker in a dark room, neon glow, multiple screens, intense focus, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_35_3.png
- text: 'a cybernetic anne of green gables with neural implant and bio mech augmentations'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_36_0.png
- text: 'a cybernetic anne of green gables with neural implant and bio mech augmentations'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_37_1.png
- text: 'a cybernetic anne of green gables with neural implant and bio mech augmentations'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_38_2.png
- text: 'a cybernetic anne of green gables with neural implant and bio mech augmentations'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_39_3.png
- text: 'Post-apocalyptic cityscape, ruined buildings, overgrown vegetation, dark and gritty, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_40_0.png
- text: 'Post-apocalyptic cityscape, ruined buildings, overgrown vegetation, dark and gritty, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_41_1.png
- text: 'Post-apocalyptic cityscape, ruined buildings, overgrown vegetation, dark and gritty, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_42_2.png
- text: 'Post-apocalyptic cityscape, ruined buildings, overgrown vegetation, dark and gritty, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_43_3.png
- text: 'Magical castle in a lush forest, glowing windows, fantasy architecture, high resolution, detailed textures'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_44_0.png
- text: 'Magical castle in a lush forest, glowing windows, fantasy architecture, high resolution, detailed textures'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_45_1.png
- text: 'Magical castle in a lush forest, glowing windows, fantasy architecture, high resolution, detailed textures'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_46_2.png
- text: 'Magical castle in a lush forest, glowing windows, fantasy architecture, high resolution, detailed textures'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_47_3.png
- text: 'Ruins of an ancient temple in an enchanted forest, glowing runes, mystical creatures, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_48_0.png
- text: 'Ruins of an ancient temple in an enchanted forest, glowing runes, mystical creatures, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_49_1.png
- text: 'Ruins of an ancient temple in an enchanted forest, glowing runes, mystical creatures, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_50_2.png
- text: 'Ruins of an ancient temple in an enchanted forest, glowing runes, mystical creatures, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_51_3.png
- text: 'Mystical forest, glowing plants, fairies, magical creatures, fantasy art, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_52_0.png
- text: 'Mystical forest, glowing plants, fairies, magical creatures, fantasy art, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_53_1.png
- text: 'Mystical forest, glowing plants, fairies, magical creatures, fantasy art, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_54_2.png
- text: 'Mystical forest, glowing plants, fairies, magical creatures, fantasy art, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_55_3.png
- text: 'Magical garden with glowing flowers, fairies, serene atmosphere, detailed plants, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_56_0.png
- text: 'Magical garden with glowing flowers, fairies, serene atmosphere, detailed plants, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_57_1.png
- text: 'Magical garden with glowing flowers, fairies, serene atmosphere, detailed plants, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_58_2.png
- text: 'Magical garden with glowing flowers, fairies, serene atmosphere, detailed plants, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_59_3.png
- text: 'Whimsical garden filled with fairies, magical plants, sparkling lights, serene atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_60_0.png
- text: 'Whimsical garden filled with fairies, magical plants, sparkling lights, serene atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_61_1.png
- text: 'Whimsical garden filled with fairies, magical plants, sparkling lights, serene atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_62_2.png
- text: 'Whimsical garden filled with fairies, magical plants, sparkling lights, serene atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_63_3.png
- text: 'Majestic dragon soaring through the sky, detailed scales, dynamic pose, fantasy art, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_64_0.png
- text: 'Majestic dragon soaring through the sky, detailed scales, dynamic pose, fantasy art, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_65_1.png
- text: 'Majestic dragon soaring through the sky, detailed scales, dynamic pose, fantasy art, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_66_2.png
- text: 'Majestic dragon soaring through the sky, detailed scales, dynamic pose, fantasy art, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_67_3.png
- text: 'Fantasy world, floating islands in the sky, waterfalls, lush vegetation, detailed landscape, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_68_0.png
- text: 'Fantasy world, floating islands in the sky, waterfalls, lush vegetation, detailed landscape, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_69_1.png
- text: 'Fantasy world, floating islands in the sky, waterfalls, lush vegetation, detailed landscape, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_70_2.png
- text: 'Fantasy world, floating islands in the sky, waterfalls, lush vegetation, detailed landscape, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_71_3.png
- text: 'Futuristic city skyline at night, neon lights, cyberpunk style, high contrast, sharp focus'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_72_0.png
- text: 'Futuristic city skyline at night, neon lights, cyberpunk style, high contrast, sharp focus'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_73_1.png
- text: 'Futuristic city skyline at night, neon lights, cyberpunk style, high contrast, sharp focus'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_74_2.png
- text: 'Futuristic city skyline at night, neon lights, cyberpunk style, high contrast, sharp focus'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_75_3.png
- text: 'Space battle scene, starships fighting, laser beams, explosions, cosmic background'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_76_0.png
- text: 'Space battle scene, starships fighting, laser beams, explosions, cosmic background'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_77_1.png
- text: 'Space battle scene, starships fighting, laser beams, explosions, cosmic background'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_78_2.png
- text: 'Space battle scene, starships fighting, laser beams, explosions, cosmic background'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_79_3.png
- text: 'Abandoned fairground at night, eerie rides, ghostly figures, fog, dark atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_80_0.png
- text: 'Abandoned fairground at night, eerie rides, ghostly figures, fog, dark atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_81_1.png
- text: 'Abandoned fairground at night, eerie rides, ghostly figures, fog, dark atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_82_2.png
- text: 'Abandoned fairground at night, eerie rides, ghostly figures, fog, dark atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_83_3.png
- text: 'Spooky haunted mansion on a hill, dark and eerie, glowing windows, ghostly atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_84_0.png
- text: 'Spooky haunted mansion on a hill, dark and eerie, glowing windows, ghostly atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_85_1.png
- text: 'Spooky haunted mansion on a hill, dark and eerie, glowing windows, ghostly atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_86_2.png
- text: 'Spooky haunted mansion on a hill, dark and eerie, glowing windows, ghostly atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_87_3.png
- text: 'a hardcover physics textbook that is called PHYSICS FOR DUMMIES'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_88_0.png
- text: 'a hardcover physics textbook that is called PHYSICS FOR DUMMIES'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_89_1.png
- text: 'a hardcover physics textbook that is called PHYSICS FOR DUMMIES'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_90_2.png
- text: 'a hardcover physics textbook that is called PHYSICS FOR DUMMIES'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_91_3.png
- text: 'Epic medieval battle, knights in armor, dynamic action, detailed landscape, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_92_0.png
- text: 'Epic medieval battle, knights in armor, dynamic action, detailed landscape, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_93_1.png
- text: 'Epic medieval battle, knights in armor, dynamic action, detailed landscape, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_94_2.png
- text: 'Epic medieval battle, knights in armor, dynamic action, detailed landscape, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_95_3.png
- text: 'Bustling medieval market with merchants, knights, and jesters, vibrant colors, detailed'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_96_0.png
- text: 'Bustling medieval market with merchants, knights, and jesters, vibrant colors, detailed'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_97_1.png
- text: 'Bustling medieval market with merchants, knights, and jesters, vibrant colors, detailed'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_98_2.png
- text: 'Bustling medieval market with merchants, knights, and jesters, vibrant colors, detailed'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_99_3.png
- text: 'Cozy medieval tavern, warm firelight, adventurers drinking, detailed interior, rustic atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_100_0.png
- text: 'Cozy medieval tavern, warm firelight, adventurers drinking, detailed interior, rustic atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_101_1.png
- text: 'Cozy medieval tavern, warm firelight, adventurers drinking, detailed interior, rustic atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_102_2.png
- text: 'Cozy medieval tavern, warm firelight, adventurers drinking, detailed interior, rustic atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_103_3.png
- text: 'Futuristic city skyline at night, neon lights, cyberpunk style, high contrast, sharp focus'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_104_0.png
- text: 'Futuristic city skyline at night, neon lights, cyberpunk style, high contrast, sharp focus'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_105_1.png
- text: 'Futuristic city skyline at night, neon lights, cyberpunk style, high contrast, sharp focus'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_106_2.png
- text: 'Futuristic city skyline at night, neon lights, cyberpunk style, high contrast, sharp focus'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_107_3.png
- text: 'Forest with neon-lit trees, glowing plants, bioluminescence, surreal atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_108_0.png
- text: 'Forest with neon-lit trees, glowing plants, bioluminescence, surreal atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_109_1.png
- text: 'Forest with neon-lit trees, glowing plants, bioluminescence, surreal atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_110_2.png
- text: 'Forest with neon-lit trees, glowing plants, bioluminescence, surreal atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_111_3.png
- text: 'Bright neon sign in a busy city street, ''Open 24 Hours'', bold typography, glowing lights'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_112_0.png
- text: 'Bright neon sign in a busy city street, ''Open 24 Hours'', bold typography, glowing lights'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_113_1.png
- text: 'Bright neon sign in a busy city street, ''Open 24 Hours'', bold typography, glowing lights'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_114_2.png
- text: 'Bright neon sign in a busy city street, ''Open 24 Hours'', bold typography, glowing lights'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_115_3.png
- text: 'Vibrant neon sign, ''Bar'', bold typography, dark background, glowing lights, detailed design'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_116_0.png
- text: 'Vibrant neon sign, ''Bar'', bold typography, dark background, glowing lights, detailed design'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_117_1.png
- text: 'Vibrant neon sign, ''Bar'', bold typography, dark background, glowing lights, detailed design'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_118_2.png
- text: 'Vibrant neon sign, ''Bar'', bold typography, dark background, glowing lights, detailed design'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_119_3.png
- text: 'Pirate ship on the high seas, stormy weather, detailed sails, dramatic waves, photorealistic'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_120_0.png
- text: 'Pirate ship on the high seas, stormy weather, detailed sails, dramatic waves, photorealistic'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_121_1.png
- text: 'Pirate ship on the high seas, stormy weather, detailed sails, dramatic waves, photorealistic'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_122_2.png
- text: 'Pirate ship on the high seas, stormy weather, detailed sails, dramatic waves, photorealistic'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_123_3.png
- text: 'Pirate discovering a treasure chest, detailed gold coins, tropical island, dramatic lighting'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_124_0.png
- text: 'Pirate discovering a treasure chest, detailed gold coins, tropical island, dramatic lighting'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_125_1.png
- text: 'Pirate discovering a treasure chest, detailed gold coins, tropical island, dramatic lighting'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_126_2.png
- text: 'Pirate discovering a treasure chest, detailed gold coins, tropical island, dramatic lighting'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_127_3.png
- text: 'a photograph of a woman experiencing a psychedelic trip. trippy, 8k, uhd, fractal'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_128_0.png
- text: 'a photograph of a woman experiencing a psychedelic trip. trippy, 8k, uhd, fractal'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_129_1.png
- text: 'a photograph of a woman experiencing a psychedelic trip. trippy, 8k, uhd, fractal'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_130_2.png
- text: 'a photograph of a woman experiencing a psychedelic trip. trippy, 8k, uhd, fractal'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_131_3.png
- text: 'Cozy cafe on a rainy day, people sipping coffee, warm lights, reflections on wet pavement, photorealistic'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_132_0.png
- text: 'Cozy cafe on a rainy day, people sipping coffee, warm lights, reflections on wet pavement, photorealistic'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_133_1.png
- text: 'Cozy cafe on a rainy day, people sipping coffee, warm lights, reflections on wet pavement, photorealistic'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_134_2.png
- text: 'Cozy cafe on a rainy day, people sipping coffee, warm lights, reflections on wet pavement, photorealistic'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_135_3.png
- text: '1980s arcade, neon lights, vintage game machines, kids playing, vibrant colors, nostalgic atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_136_0.png
- text: '1980s arcade, neon lights, vintage game machines, kids playing, vibrant colors, nostalgic atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_137_1.png
- text: '1980s arcade, neon lights, vintage game machines, kids playing, vibrant colors, nostalgic atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_138_2.png
- text: '1980s arcade, neon lights, vintage game machines, kids playing, vibrant colors, nostalgic atmosphere'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_139_3.png
- text: '1980s game room with vintage arcade machines, neon lights, vibrant colors, nostalgic feel'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_140_0.png
- text: '1980s game room with vintage arcade machines, neon lights, vibrant colors, nostalgic feel'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_141_1.png
- text: '1980s game room with vintage arcade machines, neon lights, vibrant colors, nostalgic feel'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_142_2.png
- text: '1980s game room with vintage arcade machines, neon lights, vibrant colors, nostalgic feel'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_143_3.png
- text: 'Robot blacksmith forging metal, sparks flying, detailed workshop, futuristic and medieval blend'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_144_0.png
- text: 'Robot blacksmith forging metal, sparks flying, detailed workshop, futuristic and medieval blend'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_145_1.png
- text: 'Robot blacksmith forging metal, sparks flying, detailed workshop, futuristic and medieval blend'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_146_2.png
- text: 'Robot blacksmith forging metal, sparks flying, detailed workshop, futuristic and medieval blend'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_147_3.png
- text: 'Sleek robot performing a dance, futuristic theater, holographic effects, detailed, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_148_0.png
- text: 'Sleek robot performing a dance, futuristic theater, holographic effects, detailed, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_149_1.png
- text: 'Sleek robot performing a dance, futuristic theater, holographic effects, detailed, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_150_2.png
- text: 'Sleek robot performing a dance, futuristic theater, holographic effects, detailed, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_151_3.png
- text: 'High-tech factory where robots are assembled, detailed machinery, futuristic setting, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_152_0.png
- text: 'High-tech factory where robots are assembled, detailed machinery, futuristic setting, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_153_1.png
- text: 'High-tech factory where robots are assembled, detailed machinery, futuristic setting, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_154_2.png
- text: 'High-tech factory where robots are assembled, detailed machinery, futuristic setting, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_155_3.png
- text: 'Garden tended by robots, mechanical plants, colorful flowers, futuristic setting, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_156_0.png
- text: 'Garden tended by robots, mechanical plants, colorful flowers, futuristic setting, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_157_1.png
- text: 'Garden tended by robots, mechanical plants, colorful flowers, futuristic setting, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_158_2.png
- text: 'Garden tended by robots, mechanical plants, colorful flowers, futuristic setting, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_159_3.png
- text: 'Cute robotic pet, futuristic home, sleek design, detailed features, friendly and animated'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_160_0.png
- text: 'Cute robotic pet, futuristic home, sleek design, detailed features, friendly and animated'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_161_1.png
- text: 'Cute robotic pet, futuristic home, sleek design, detailed features, friendly and animated'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_162_2.png
- text: 'Cute robotic pet, futuristic home, sleek design, detailed features, friendly and animated'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_163_3.png
- text: 'cctv trail camera night time security picture of a wendigo in the woods'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_164_0.png
- text: 'cctv trail camera night time security picture of a wendigo in the woods'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_165_1.png
- text: 'cctv trail camera night time security picture of a wendigo in the woods'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_166_2.png
- text: 'cctv trail camera night time security picture of a wendigo in the woods'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_167_3.png
- text: 'Astronaut exploring an alien planet, detailed landscape, futuristic suit, cosmic background'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_168_0.png
- text: 'Astronaut exploring an alien planet, detailed landscape, futuristic suit, cosmic background'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_169_1.png
- text: 'Astronaut exploring an alien planet, detailed landscape, futuristic suit, cosmic background'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_170_2.png
- text: 'Astronaut exploring an alien planet, detailed landscape, futuristic suit, cosmic background'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_171_3.png
- text: 'Futuristic space station orbiting a distant exoplanet, sleek design, detailed structures, cosmic backdrop'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_172_0.png
- text: 'Futuristic space station orbiting a distant exoplanet, sleek design, detailed structures, cosmic backdrop'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_173_1.png
- text: 'Futuristic space station orbiting a distant exoplanet, sleek design, detailed structures, cosmic backdrop'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_174_2.png
- text: 'Futuristic space station orbiting a distant exoplanet, sleek design, detailed structures, cosmic backdrop'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_175_3.png
- text: 'a person holding a sign that reads ''SOON'''
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_176_0.png
- text: 'a person holding a sign that reads ''SOON'''
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_177_1.png
- text: 'a person holding a sign that reads ''SOON'''
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_178_2.png
- text: 'a person holding a sign that reads ''SOON'''
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_179_3.png
- text: 'Steampunk airship in the sky, intricate design, Victorian aesthetics, dynamic scene, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_180_0.png
- text: 'Steampunk airship in the sky, intricate design, Victorian aesthetics, dynamic scene, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_181_1.png
- text: 'Steampunk airship in the sky, intricate design, Victorian aesthetics, dynamic scene, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_182_2.png
- text: 'Steampunk airship in the sky, intricate design, Victorian aesthetics, dynamic scene, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_183_3.png
- text: 'Steampunk inventor in a workshop, intricate gadgets, Victorian attire, mechanical arm, goggles'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_184_0.png
- text: 'Steampunk inventor in a workshop, intricate gadgets, Victorian attire, mechanical arm, goggles'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_185_1.png
- text: 'Steampunk inventor in a workshop, intricate gadgets, Victorian attire, mechanical arm, goggles'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_186_2.png
- text: 'Steampunk inventor in a workshop, intricate gadgets, Victorian attire, mechanical arm, goggles'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_187_3.png
- text: 'Stormy ocean with towering waves, dramatic skies, detailed water, intense atmosphere, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_188_0.png
- text: 'Stormy ocean with towering waves, dramatic skies, detailed water, intense atmosphere, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_189_1.png
- text: 'Stormy ocean with towering waves, dramatic skies, detailed water, intense atmosphere, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_190_2.png
- text: 'Stormy ocean with towering waves, dramatic skies, detailed water, intense atmosphere, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_191_3.png
- text: 'Dramatic stormy sea, lighthouse in the distance, lightning striking, dark clouds, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_192_0.png
- text: 'Dramatic stormy sea, lighthouse in the distance, lightning striking, dark clouds, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_193_1.png
- text: 'Dramatic stormy sea, lighthouse in the distance, lightning striking, dark clouds, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_194_2.png
- text: 'Dramatic stormy sea, lighthouse in the distance, lightning striking, dark clouds, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_195_3.png
- text: 'Graffiti artist creating a mural, vibrant colors, urban setting, dynamic action, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_196_0.png
- text: 'Graffiti artist creating a mural, vibrant colors, urban setting, dynamic action, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_197_1.png
- text: 'Graffiti artist creating a mural, vibrant colors, urban setting, dynamic action, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_198_2.png
- text: 'Graffiti artist creating a mural, vibrant colors, urban setting, dynamic action, high resolution'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_199_3.png
- text: 'Urban alleyway filled with vibrant graffiti art, tags and murals, realistic textures'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_200_0.png
- text: 'Urban alleyway filled with vibrant graffiti art, tags and murals, realistic textures'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_201_1.png
- text: 'Urban alleyway filled with vibrant graffiti art, tags and murals, realistic textures'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_202_2.png
- text: 'Urban alleyway filled with vibrant graffiti art, tags and murals, realistic textures'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_203_3.png
- text: 'Urban street sign, ''Main Street'', bold typography, realistic textures, weathered look'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_204_0.png
- text: 'Urban street sign, ''Main Street'', bold typography, realistic textures, weathered look'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_205_1.png
- text: 'Urban street sign, ''Main Street'', bold typography, realistic textures, weathered look'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_206_2.png
- text: 'Urban street sign, ''Main Street'', bold typography, realistic textures, weathered look'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_207_3.png
- text: 'Classic car show with vintage vehicles, vibrant colors, nostalgic atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_208_0.png
- text: 'Classic car show with vintage vehicles, vibrant colors, nostalgic atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_209_1.png
- text: 'Classic car show with vintage vehicles, vibrant colors, nostalgic atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_210_2.png
- text: 'Classic car show with vintage vehicles, vibrant colors, nostalgic atmosphere, high detail'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_211_3.png
- text: 'Retro diner sign, ''Joe''s Diner'', classic 1950s design, neon lights, weathered look'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_212_0.png
- text: 'Retro diner sign, ''Joe''s Diner'', classic 1950s design, neon lights, weathered look'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_213_1.png
- text: 'Retro diner sign, ''Joe''s Diner'', classic 1950s design, neon lights, weathered look'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_214_2.png
- text: 'Retro diner sign, ''Joe''s Diner'', classic 1950s design, neon lights, weathered look'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_215_3.png
- text: 'Vintage store sign with elaborate typography, ''Antique Shop'', hand-painted, weathered look'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_216_0.png
- text: 'Vintage store sign with elaborate typography, ''Antique Shop'', hand-painted, weathered look'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_217_1.png
- text: 'Vintage store sign with elaborate typography, ''Antique Shop'', hand-painted, weathered look'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_218_2.png
- text: 'Vintage store sign with elaborate typography, ''Antique Shop'', hand-painted, weathered look'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_219_3.png
- text: 'ethnographic photography of teddy bear at a picnic holding a sign that says SOON, sitting next to a red sphere which is inside a capsule'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_220_0.png
- text: 'ethnographic photography of teddy bear at a picnic holding a sign that says SOON, sitting next to a red sphere which is inside a capsule'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_221_1.png
- text: 'ethnographic photography of teddy bear at a picnic holding a sign that says SOON, sitting next to a red sphere which is inside a capsule'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_222_2.png
- text: 'ethnographic photography of teddy bear at a picnic holding a sign that says SOON, sitting next to a red sphere which is inside a capsule'
parameters:
negative_prompt: 'blurry, cropped, ugly'
output:
url: ./assets/image_223_3.png
---
# sd3-reality-mix
This is a full rank finetune derived from [stabilityai/stable-diffusion-3-medium-diffusers](https://huggingface.co/stabilityai/stable-diffusion-3-medium-diffusers).
The main validation prompt used during training was:
```
ethnographic photography of teddy bear at a picnic holding a sign that says SOON, sitting next to a red sphere which is inside a capsule
```
## Validation settings
- CFG: `5.5`
- CFG Rescale: `0.0`
- Steps: `30`
- Sampler: `euler`
- Seed: `42`
- Resolutions: `512x512,1024x1024,1280x768,960x1152`
Note: The validation settings are not necessarily the same as the [training settings](#training-settings).
You can find some example images in the following gallery:
<Gallery />
The text encoder **was not** trained.
You may reuse the base model text encoder for inference.
## Training settings
- Training epochs: 0
- Training steps: 1000
- Learning rate: 1e-06
- Effective batch size: 96
- Micro-batch size: 6
- Gradient accumulation steps: 2
- Number of GPUs: 8
- Prediction type: epsilon
- Rescaled betas zero SNR: False
- Optimizer: AdamW, stochastic bf16
- Precision: Pure BF16
- Xformers: Not used
## Datasets
### photo-concept-bucket
- Repeats: 0
- Total number of images: ~557568
- Total number of aspect buckets: 10
- Resolution: 1.0 megapixels
- Cropped: False
- Crop style: None
- Crop aspect: None
### dalle3
- Repeats: 0
- Total number of images: ~984960
- Total number of aspect buckets: 2
- Resolution: 1.0 megapixels
- Cropped: False
- Crop style: None
- Crop aspect: None
## Inference
```python
import torch
from diffusers import StableDiffusion3Pipeline
model_id = "sd3-reality-mix"
prompt = "ethnographic photography of teddy bear at a picnic holding a sign that says SOON, sitting next to a red sphere which is inside a capsule"
negative_prompt = "malformed, disgusting, overexposed, washed-out"
pipeline = DiffusionPipeline.from_pretrained(model_id)
pipeline.to('cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu')
image = pipeline(
prompt=prompt,
negative_prompt='blurry, cropped, ugly',
num_inference_steps=30,
generator=torch.Generator(device='cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu').manual_seed(1641421826),
width=1152,
height=768,
guidance_scale=5.5,
guidance_rescale=0.0,
).images[0]
image.save("output.png", format="PNG")
```
|