File size: 67,916 Bytes
fbef6d9 | 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 | {
"txt2img/Prompt/visible": true,
"txt2img/Prompt/value": "",
"txt2img/Negative prompt/visible": true,
"txt2img/Negative prompt/value": "",
"txt2img/Interrupt/visible": true,
"txt2img/Skip/visible": true,
"txt2img/Generate/visible": true,
"txt2img/↙️/visible": true,
"txt2img/🗑️/visible": true,
"txt2img/📋/visible": true,
"txt2img/Styles/visible": true,
"txt2img/Styles/value": [],
"txt2img/🖌️/visible": true,
"txt2img/🔄/visible": true,
"txt2img/📝/visible": true,
"txt2img/Close/visible": true,
"txt2img/Tabs@txt2img_extra_tabs/selected": null,
"txt2img/Sampling method/visible": true,
"txt2img/Sampling method/value": "DPM++ 2M Karras",
"txt2img/Sampling steps/visible": true,
"txt2img/Sampling steps/value": 20,
"txt2img/Sampling steps/minimum": 1,
"txt2img/Sampling steps/maximum": 150,
"txt2img/Sampling steps/step": 1,
"txt2img/Hires. fix/visible": true,
"txt2img/Hires. fix/value": false,
"txt2img/Upscaler/visible": true,
"txt2img/Upscaler/value": "Latent",
"txt2img/Hires steps/visible": true,
"txt2img/Hires steps/value": 0,
"txt2img/Hires steps/minimum": 0,
"txt2img/Hires steps/maximum": 150,
"txt2img/Hires steps/step": 1,
"txt2img/Denoising strength/visible": true,
"txt2img/Denoising strength/value": 0.7,
"txt2img/Denoising strength/minimum": 0.0,
"txt2img/Denoising strength/maximum": 1.0,
"txt2img/Denoising strength/step": 0.01,
"txt2img/Upscale by/visible": true,
"txt2img/Upscale by/value": 2.0,
"txt2img/Upscale by/minimum": 1.0,
"txt2img/Upscale by/maximum": 4.0,
"txt2img/Upscale by/step": 0.05,
"txt2img/Resize width to/visible": true,
"txt2img/Resize width to/value": 0,
"txt2img/Resize width to/minimum": 0,
"txt2img/Resize width to/maximum": 2048,
"txt2img/Resize width to/step": 8,
"txt2img/Resize height to/visible": true,
"txt2img/Resize height to/value": 0,
"txt2img/Resize height to/minimum": 0,
"txt2img/Resize height to/maximum": 2048,
"txt2img/Resize height to/step": 8,
"txt2img/Hires checkpoint/visible": true,
"txt2img/Hires checkpoint/value": "Use same checkpoint",
"txt2img/Hires sampling method/visible": true,
"txt2img/Hires sampling method/value": "Use same sampler",
"txt2img/Hires prompt/visible": true,
"txt2img/Hires prompt/value": "",
"txt2img/Hires negative prompt/visible": true,
"txt2img/Hires negative prompt/value": "",
"txt2img/Refiner/visible": true,
"customscript/refiner.py/txt2img/Refiner/value": false,
"txt2img/Refiner/value": false,
"customscript/refiner.py/txt2img/Checkpoint/visible": true,
"customscript/refiner.py/txt2img/Checkpoint/value": "",
"customscript/refiner.py/txt2img/Switch at/visible": true,
"customscript/refiner.py/txt2img/Switch at/value": 0.8,
"customscript/refiner.py/txt2img/Switch at/minimum": 0.01,
"customscript/refiner.py/txt2img/Switch at/maximum": 1.0,
"customscript/refiner.py/txt2img/Switch at/step": 0.01,
"txt2img/Width/visible": true,
"txt2img/Width/value": 512,
"txt2img/Width/minimum": 64,
"txt2img/Width/maximum": 2048,
"txt2img/Width/step": 8,
"txt2img/Height/visible": true,
"txt2img/Height/value": 512,
"txt2img/Height/minimum": 64,
"txt2img/Height/maximum": 2048,
"txt2img/Height/step": 8,
"txt2img/⇅/visible": true,
"txt2img/Batch count/visible": true,
"txt2img/Batch count/value": 1,
"txt2img/Batch count/minimum": 1,
"txt2img/Batch count/maximum": 100,
"txt2img/Batch count/step": 1,
"txt2img/Batch size/visible": true,
"txt2img/Batch size/value": 1,
"txt2img/Batch size/minimum": 1,
"txt2img/Batch size/maximum": 8,
"txt2img/Batch size/step": 1,
"txt2img/CFG Scale/visible": true,
"txt2img/CFG Scale/value": 7.0,
"txt2img/CFG Scale/minimum": 1.0,
"txt2img/CFG Scale/maximum": 30.0,
"txt2img/CFG Scale/step": 0.5,
"customscript/seed.py/txt2img/Seed/visible": true,
"customscript/seed.py/txt2img/Seed/value": -1,
"txt2img/🎲️/visible": true,
"txt2img/♻️/visible": true,
"customscript/seed.py/txt2img/Extra/visible": true,
"customscript/seed.py/txt2img/Extra/value": false,
"customscript/seed.py/txt2img/Variation seed/visible": true,
"customscript/seed.py/txt2img/Variation seed/value": -1,
"customscript/seed.py/txt2img/Variation strength/visible": true,
"customscript/seed.py/txt2img/Variation strength/value": 0.0,
"customscript/seed.py/txt2img/Variation strength/minimum": 0,
"customscript/seed.py/txt2img/Variation strength/maximum": 1,
"customscript/seed.py/txt2img/Variation strength/step": 0.01,
"customscript/seed.py/txt2img/Resize seed from width/visible": true,
"customscript/seed.py/txt2img/Resize seed from width/value": 0,
"customscript/seed.py/txt2img/Resize seed from width/minimum": 0,
"customscript/seed.py/txt2img/Resize seed from width/maximum": 2048,
"customscript/seed.py/txt2img/Resize seed from width/step": 8,
"customscript/seed.py/txt2img/Resize seed from height/visible": true,
"customscript/seed.py/txt2img/Resize seed from height/value": 0,
"customscript/seed.py/txt2img/Resize seed from height/minimum": 0,
"customscript/seed.py/txt2img/Resize seed from height/maximum": 2048,
"customscript/seed.py/txt2img/Resize seed from height/step": 8,
"txt2img/Override settings/value": null,
"txt2img/Script/visible": true,
"txt2img/Script/value": "None",
"customscript/prompt_matrix.py/txt2img/Put variable parts at start of prompt/visible": true,
"customscript/prompt_matrix.py/txt2img/Put variable parts at start of prompt/value": false,
"customscript/prompt_matrix.py/txt2img/Use different seed for each picture/visible": true,
"customscript/prompt_matrix.py/txt2img/Use different seed for each picture/value": false,
"customscript/prompt_matrix.py/txt2img/Select prompt/visible": true,
"customscript/prompt_matrix.py/txt2img/Select prompt/value": "positive",
"customscript/prompt_matrix.py/txt2img/Select joining char/visible": true,
"customscript/prompt_matrix.py/txt2img/Select joining char/value": "comma",
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/visible": true,
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/value": 0,
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/minimum": 0,
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/maximum": 500,
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/step": 2,
"customscript/prompts_from_file.py/txt2img/Iterate seed every line/visible": true,
"customscript/prompts_from_file.py/txt2img/Iterate seed every line/value": false,
"customscript/prompts_from_file.py/txt2img/Use same random seed for all lines/visible": true,
"customscript/prompts_from_file.py/txt2img/Use same random seed for all lines/value": false,
"customscript/prompts_from_file.py/txt2img/Insert prompts at the/visible": true,
"customscript/prompts_from_file.py/txt2img/Insert prompts at the/value": "start",
"customscript/prompts_from_file.py/txt2img/List of prompt inputs/visible": true,
"customscript/prompts_from_file.py/txt2img/List of prompt inputs/value": "",
"customscript/xyz_grid.py/txt2img/X type/visible": true,
"customscript/xyz_grid.py/txt2img/X type/value": "Seed",
"customscript/xyz_grid.py/txt2img/X values/visible": true,
"customscript/xyz_grid.py/txt2img/X values/value": "",
"customscript/xyz_grid.py/txt2img/Y type/visible": true,
"customscript/xyz_grid.py/txt2img/Y type/value": "Nothing",
"customscript/xyz_grid.py/txt2img/Y values/visible": true,
"customscript/xyz_grid.py/txt2img/Y values/value": "",
"customscript/xyz_grid.py/txt2img/Z type/visible": true,
"customscript/xyz_grid.py/txt2img/Z type/value": "Nothing",
"customscript/xyz_grid.py/txt2img/Z values/visible": true,
"customscript/xyz_grid.py/txt2img/Z values/value": "",
"customscript/xyz_grid.py/txt2img/Draw legend/visible": true,
"customscript/xyz_grid.py/txt2img/Draw legend/value": true,
"customscript/xyz_grid.py/txt2img/Keep -1 for seeds/visible": true,
"customscript/xyz_grid.py/txt2img/Keep -1 for seeds/value": false,
"customscript/xyz_grid.py/txt2img/Include Sub Images/visible": true,
"customscript/xyz_grid.py/txt2img/Include Sub Images/value": false,
"customscript/xyz_grid.py/txt2img/Include Sub Grids/visible": true,
"customscript/xyz_grid.py/txt2img/Include Sub Grids/value": false,
"customscript/xyz_grid.py/txt2img/Grid margins (px)/visible": true,
"customscript/xyz_grid.py/txt2img/Grid margins (px)/value": 0,
"customscript/xyz_grid.py/txt2img/Grid margins (px)/minimum": 0,
"customscript/xyz_grid.py/txt2img/Grid margins (px)/maximum": 500,
"customscript/xyz_grid.py/txt2img/Grid margins (px)/step": 2,
"customscript/xyz_grid.py/txt2img/Use text inputs instead of dropdowns/visible": true,
"customscript/xyz_grid.py/txt2img/Use text inputs instead of dropdowns/value": false,
"txt2img/Swap X/Y axes/visible": true,
"txt2img/Swap Y/Z axes/visible": true,
"txt2img/Swap X/Z axes/visible": true,
"txt2img/📂/visible": true,
"txt2img/💾/visible": true,
"txt2img/🗃️/visible": true,
"txt2img/🖼️/visible": true,
"txt2img/🎨️/visible": true,
"txt2img/📐/visible": true,
"txt2img/Description/visible": true,
"txt2img/Description/value": "",
"txt2img/Cancel/visible": true,
"txt2img/Replace preview/visible": true,
"txt2img/Save/visible": true,
"txt2img/Preferred VAE/visible": true,
"txt2img/Preferred VAE/value": "None",
"txt2img/Stable Diffusion version/visible": true,
"txt2img/Stable Diffusion version/value": "Unknown",
"txt2img/Activation text/visible": true,
"txt2img/Activation text/value": "",
"txt2img/Preferred weight/visible": true,
"txt2img/Preferred weight/value": 0.0,
"txt2img/Preferred weight/minimum": 0.0,
"txt2img/Preferred weight/maximum": 2.0,
"txt2img/Preferred weight/step": 0.01,
"txt2img/Random prompt/visible": true,
"txt2img/Random prompt/value": "",
"txt2img/txt2img_extra_sort_order/value": "Path",
"txt2img/Show dirs/value": true,
"img2img/Prompt/visible": true,
"img2img/Prompt/value": "",
"img2img/Negative prompt/visible": true,
"img2img/Negative prompt/value": "",
"img2img/Interrupt/visible": true,
"img2img/Skip/visible": true,
"img2img/Generate/visible": true,
"img2img/↙️/visible": true,
"img2img/🗑️/visible": true,
"img2img/📋/visible": true,
"img2img/📎/visible": true,
"img2img/📦/visible": true,
"img2img/Styles/visible": true,
"img2img/Styles/value": [],
"img2img/🖌️/visible": true,
"img2img/🔄/visible": true,
"img2img/📝/visible": true,
"img2img/Close/visible": true,
"img2img/Tabs@img2img_extra_tabs/selected": null,
"img2img/Tabs@mode_img2img/selected": null,
"img2img/img2img/visible": true,
"img2img/sketch/visible": true,
"img2img/inpaint/visible": true,
"img2img/inpaint sketch/visible": true,
"img2img/Input directory/visible": true,
"img2img/Input directory/value": "",
"img2img/Output directory/visible": true,
"img2img/Output directory/value": "",
"img2img/Inpaint batch mask directory (required for inpaint batch processing only)/visible": true,
"img2img/Inpaint batch mask directory (required for inpaint batch processing only)/value": "",
"img2img/Append png info to prompts/visible": true,
"img2img/Append png info to prompts/value": false,
"img2img/PNG info directory/visible": true,
"img2img/PNG info directory/value": "",
"img2img/Resize mode/visible": true,
"img2img/Resize mode/value": "Just resize",
"img2img/Mask blur/visible": true,
"img2img/Mask blur/value": 4,
"img2img/Mask blur/minimum": 0,
"img2img/Mask blur/maximum": 64,
"img2img/Mask blur/step": 1,
"img2img/Mask transparency/value": 0,
"img2img/Mask transparency/minimum": 0,
"img2img/Mask transparency/maximum": 100,
"img2img/Mask transparency/step": 1,
"img2img/Mask mode/visible": true,
"img2img/Mask mode/value": "Inpaint masked",
"img2img/Masked content/visible": true,
"img2img/Masked content/value": "original",
"img2img/Inpaint area/visible": true,
"img2img/Inpaint area/value": "Whole picture",
"img2img/Only masked padding, pixels/visible": true,
"img2img/Only masked padding, pixels/value": 32,
"img2img/Only masked padding, pixels/minimum": 0,
"img2img/Only masked padding, pixels/maximum": 256,
"img2img/Only masked padding, pixels/step": 4,
"img2img/Sampling method/visible": true,
"img2img/Sampling method/value": "DPM++ 2M Karras",
"img2img/Sampling steps/visible": true,
"img2img/Sampling steps/value": 20,
"img2img/Sampling steps/minimum": 1,
"img2img/Sampling steps/maximum": 150,
"img2img/Sampling steps/step": 1,
"img2img/Refiner/visible": true,
"customscript/refiner.py/img2img/Refiner/value": false,
"img2img/Refiner/value": false,
"customscript/refiner.py/img2img/Checkpoint/visible": true,
"customscript/refiner.py/img2img/Checkpoint/value": "",
"customscript/refiner.py/img2img/Switch at/visible": true,
"customscript/refiner.py/img2img/Switch at/value": 0.8,
"customscript/refiner.py/img2img/Switch at/minimum": 0.01,
"customscript/refiner.py/img2img/Switch at/maximum": 1.0,
"customscript/refiner.py/img2img/Switch at/step": 0.01,
"img2img/Width/visible": true,
"img2img/Width/value": 512,
"img2img/Width/minimum": 64,
"img2img/Width/maximum": 2048,
"img2img/Width/step": 8,
"img2img/Height/visible": true,
"img2img/Height/value": 512,
"img2img/Height/minimum": 64,
"img2img/Height/maximum": 2048,
"img2img/Height/step": 8,
"img2img/⇅/visible": true,
"img2img/📐/visible": true,
"img2img/Scale/visible": true,
"img2img/Scale/value": 1.0,
"img2img/Scale/minimum": 0.05,
"img2img/Scale/maximum": 4.0,
"img2img/Scale/step": 0.05,
"img2img/Unused/visible": true,
"img2img/Unused/value": 0,
"img2img/Unused/minimum": 0,
"img2img/Unused/maximum": 100,
"img2img/Unused/step": 1,
"img2img/Batch count/visible": true,
"img2img/Batch count/value": 1,
"img2img/Batch count/minimum": 1,
"img2img/Batch count/maximum": 100,
"img2img/Batch count/step": 1,
"img2img/Batch size/visible": true,
"img2img/Batch size/value": 1,
"img2img/Batch size/minimum": 1,
"img2img/Batch size/maximum": 8,
"img2img/Batch size/step": 1,
"img2img/CFG Scale/visible": true,
"img2img/CFG Scale/value": 7.0,
"img2img/CFG Scale/minimum": 1.0,
"img2img/CFG Scale/maximum": 30.0,
"img2img/CFG Scale/step": 0.5,
"img2img/Image CFG Scale/value": 1.5,
"img2img/Image CFG Scale/minimum": 0,
"img2img/Image CFG Scale/maximum": 3.0,
"img2img/Image CFG Scale/step": 0.05,
"img2img/Denoising strength/visible": true,
"img2img/Denoising strength/value": 0.75,
"img2img/Denoising strength/minimum": 0.0,
"img2img/Denoising strength/maximum": 1.0,
"img2img/Denoising strength/step": 0.01,
"customscript/seed.py/img2img/Seed/visible": true,
"customscript/seed.py/img2img/Seed/value": -1,
"img2img/🎲️/visible": true,
"img2img/♻️/visible": true,
"customscript/seed.py/img2img/Extra/visible": true,
"customscript/seed.py/img2img/Extra/value": false,
"customscript/seed.py/img2img/Variation seed/visible": true,
"customscript/seed.py/img2img/Variation seed/value": -1,
"customscript/seed.py/img2img/Variation strength/visible": true,
"customscript/seed.py/img2img/Variation strength/value": 0.0,
"customscript/seed.py/img2img/Variation strength/minimum": 0,
"customscript/seed.py/img2img/Variation strength/maximum": 1,
"customscript/seed.py/img2img/Variation strength/step": 0.01,
"customscript/seed.py/img2img/Resize seed from width/visible": true,
"customscript/seed.py/img2img/Resize seed from width/value": 0,
"customscript/seed.py/img2img/Resize seed from width/minimum": 0,
"customscript/seed.py/img2img/Resize seed from width/maximum": 2048,
"customscript/seed.py/img2img/Resize seed from width/step": 8,
"customscript/seed.py/img2img/Resize seed from height/visible": true,
"customscript/seed.py/img2img/Resize seed from height/value": 0,
"customscript/seed.py/img2img/Resize seed from height/minimum": 0,
"customscript/seed.py/img2img/Resize seed from height/maximum": 2048,
"customscript/seed.py/img2img/Resize seed from height/step": 8,
"img2img/Override settings/value": null,
"img2img/Script/visible": true,
"img2img/Script/value": "None",
"customscript/img2imgalt.py/img2img/Override `Sampling method` to Euler?(this method is built for it)/visible": true,
"customscript/img2imgalt.py/img2img/Override `Sampling method` to Euler?(this method is built for it)/value": true,
"customscript/img2imgalt.py/img2img/Override `prompt` to the same value as `original prompt`?(and `negative prompt`)/visible": true,
"customscript/img2imgalt.py/img2img/Override `prompt` to the same value as `original prompt`?(and `negative prompt`)/value": true,
"customscript/img2imgalt.py/img2img/Original prompt/visible": true,
"customscript/img2imgalt.py/img2img/Original prompt/value": "",
"customscript/img2imgalt.py/img2img/Original negative prompt/visible": true,
"customscript/img2imgalt.py/img2img/Original negative prompt/value": "",
"customscript/img2imgalt.py/img2img/Override `Sampling Steps` to the same value as `Decode steps`?/visible": true,
"customscript/img2imgalt.py/img2img/Override `Sampling Steps` to the same value as `Decode steps`?/value": true,
"customscript/img2imgalt.py/img2img/Decode steps/visible": true,
"customscript/img2imgalt.py/img2img/Decode steps/value": 50,
"customscript/img2imgalt.py/img2img/Decode steps/minimum": 1,
"customscript/img2imgalt.py/img2img/Decode steps/maximum": 150,
"customscript/img2imgalt.py/img2img/Decode steps/step": 1,
"customscript/img2imgalt.py/img2img/Override `Denoising strength` to 1?/visible": true,
"customscript/img2imgalt.py/img2img/Override `Denoising strength` to 1?/value": true,
"customscript/img2imgalt.py/img2img/Decode CFG scale/visible": true,
"customscript/img2imgalt.py/img2img/Decode CFG scale/value": 1.0,
"customscript/img2imgalt.py/img2img/Decode CFG scale/minimum": 0.0,
"customscript/img2imgalt.py/img2img/Decode CFG scale/maximum": 15.0,
"customscript/img2imgalt.py/img2img/Decode CFG scale/step": 0.1,
"customscript/img2imgalt.py/img2img/Randomness/visible": true,
"customscript/img2imgalt.py/img2img/Randomness/value": 0.0,
"customscript/img2imgalt.py/img2img/Randomness/minimum": 0.0,
"customscript/img2imgalt.py/img2img/Randomness/maximum": 1.0,
"customscript/img2imgalt.py/img2img/Randomness/step": 0.01,
"customscript/img2imgalt.py/img2img/Sigma adjustment for finding noise for image/visible": true,
"customscript/img2imgalt.py/img2img/Sigma adjustment for finding noise for image/value": false,
"customscript/loopback.py/img2img/Loops/visible": true,
"customscript/loopback.py/img2img/Loops/value": 4,
"customscript/loopback.py/img2img/Loops/minimum": 1,
"customscript/loopback.py/img2img/Loops/maximum": 32,
"customscript/loopback.py/img2img/Loops/step": 1,
"customscript/loopback.py/img2img/Final denoising strength/visible": true,
"customscript/loopback.py/img2img/Final denoising strength/value": 0.5,
"customscript/loopback.py/img2img/Final denoising strength/minimum": 0,
"customscript/loopback.py/img2img/Final denoising strength/maximum": 1,
"customscript/loopback.py/img2img/Final denoising strength/step": 0.01,
"customscript/loopback.py/img2img/Denoising strength curve/visible": true,
"customscript/loopback.py/img2img/Denoising strength curve/value": "Linear",
"customscript/loopback.py/img2img/Append interrogated prompt at each iteration/visible": true,
"customscript/loopback.py/img2img/Append interrogated prompt at each iteration/value": "None",
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/visible": true,
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/value": 128,
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/minimum": 8,
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/maximum": 256,
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/step": 8,
"customscript/outpainting_mk_2.py/img2img/Mask blur/visible": true,
"customscript/outpainting_mk_2.py/img2img/Mask blur/value": 8,
"customscript/outpainting_mk_2.py/img2img/Mask blur/minimum": 0,
"customscript/outpainting_mk_2.py/img2img/Mask blur/maximum": 64,
"customscript/outpainting_mk_2.py/img2img/Mask blur/step": 1,
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/visible": true,
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/value": 1.0,
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/minimum": 0.0,
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/maximum": 4.0,
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/step": 0.01,
"customscript/outpainting_mk_2.py/img2img/Color variation/visible": true,
"customscript/outpainting_mk_2.py/img2img/Color variation/value": 0.05,
"customscript/outpainting_mk_2.py/img2img/Color variation/minimum": 0.0,
"customscript/outpainting_mk_2.py/img2img/Color variation/maximum": 1.0,
"customscript/outpainting_mk_2.py/img2img/Color variation/step": 0.01,
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/visible": true,
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/value": 128,
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/minimum": 8,
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/maximum": 256,
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/step": 8,
"customscript/poor_mans_outpainting.py/img2img/Mask blur/visible": true,
"customscript/poor_mans_outpainting.py/img2img/Mask blur/value": 4,
"customscript/poor_mans_outpainting.py/img2img/Mask blur/minimum": 0,
"customscript/poor_mans_outpainting.py/img2img/Mask blur/maximum": 64,
"customscript/poor_mans_outpainting.py/img2img/Mask blur/step": 1,
"customscript/poor_mans_outpainting.py/img2img/Masked content/visible": true,
"customscript/poor_mans_outpainting.py/img2img/Masked content/value": "fill",
"customscript/prompt_matrix.py/img2img/Put variable parts at start of prompt/visible": true,
"customscript/prompt_matrix.py/img2img/Put variable parts at start of prompt/value": false,
"customscript/prompt_matrix.py/img2img/Use different seed for each picture/visible": true,
"customscript/prompt_matrix.py/img2img/Use different seed for each picture/value": false,
"customscript/prompt_matrix.py/img2img/Select prompt/visible": true,
"customscript/prompt_matrix.py/img2img/Select prompt/value": "positive",
"customscript/prompt_matrix.py/img2img/Select joining char/visible": true,
"customscript/prompt_matrix.py/img2img/Select joining char/value": "comma",
"customscript/prompt_matrix.py/img2img/Grid margins (px)/visible": true,
"customscript/prompt_matrix.py/img2img/Grid margins (px)/value": 0,
"customscript/prompt_matrix.py/img2img/Grid margins (px)/minimum": 0,
"customscript/prompt_matrix.py/img2img/Grid margins (px)/maximum": 500,
"customscript/prompt_matrix.py/img2img/Grid margins (px)/step": 2,
"customscript/prompts_from_file.py/img2img/Iterate seed every line/visible": true,
"customscript/prompts_from_file.py/img2img/Iterate seed every line/value": false,
"customscript/prompts_from_file.py/img2img/Use same random seed for all lines/visible": true,
"customscript/prompts_from_file.py/img2img/Use same random seed for all lines/value": false,
"customscript/prompts_from_file.py/img2img/Insert prompts at the/visible": true,
"customscript/prompts_from_file.py/img2img/Insert prompts at the/value": "start",
"customscript/prompts_from_file.py/img2img/List of prompt inputs/visible": true,
"customscript/prompts_from_file.py/img2img/List of prompt inputs/value": "",
"customscript/sd_upscale.py/img2img/Tile overlap/visible": true,
"customscript/sd_upscale.py/img2img/Tile overlap/value": 64,
"customscript/sd_upscale.py/img2img/Tile overlap/minimum": 0,
"customscript/sd_upscale.py/img2img/Tile overlap/maximum": 256,
"customscript/sd_upscale.py/img2img/Tile overlap/step": 16,
"customscript/sd_upscale.py/img2img/Scale Factor/visible": true,
"customscript/sd_upscale.py/img2img/Scale Factor/value": 2.0,
"customscript/sd_upscale.py/img2img/Scale Factor/minimum": 1.0,
"customscript/sd_upscale.py/img2img/Scale Factor/maximum": 4.0,
"customscript/sd_upscale.py/img2img/Scale Factor/step": 0.05,
"customscript/sd_upscale.py/img2img/Upscaler/visible": true,
"customscript/sd_upscale.py/img2img/Upscaler/value": "None",
"customscript/xyz_grid.py/img2img/X type/visible": true,
"customscript/xyz_grid.py/img2img/X type/value": "Seed",
"customscript/xyz_grid.py/img2img/X values/visible": true,
"customscript/xyz_grid.py/img2img/X values/value": "",
"customscript/xyz_grid.py/img2img/Y type/visible": true,
"customscript/xyz_grid.py/img2img/Y type/value": "Nothing",
"customscript/xyz_grid.py/img2img/Y values/visible": true,
"customscript/xyz_grid.py/img2img/Y values/value": "",
"customscript/xyz_grid.py/img2img/Z type/visible": true,
"customscript/xyz_grid.py/img2img/Z type/value": "Nothing",
"customscript/xyz_grid.py/img2img/Z values/visible": true,
"customscript/xyz_grid.py/img2img/Z values/value": "",
"customscript/xyz_grid.py/img2img/Draw legend/visible": true,
"customscript/xyz_grid.py/img2img/Draw legend/value": true,
"customscript/xyz_grid.py/img2img/Keep -1 for seeds/visible": true,
"customscript/xyz_grid.py/img2img/Keep -1 for seeds/value": false,
"customscript/xyz_grid.py/img2img/Include Sub Images/visible": true,
"customscript/xyz_grid.py/img2img/Include Sub Images/value": false,
"customscript/xyz_grid.py/img2img/Include Sub Grids/visible": true,
"customscript/xyz_grid.py/img2img/Include Sub Grids/value": false,
"customscript/xyz_grid.py/img2img/Grid margins (px)/visible": true,
"customscript/xyz_grid.py/img2img/Grid margins (px)/value": 0,
"customscript/xyz_grid.py/img2img/Grid margins (px)/minimum": 0,
"customscript/xyz_grid.py/img2img/Grid margins (px)/maximum": 500,
"customscript/xyz_grid.py/img2img/Grid margins (px)/step": 2,
"customscript/xyz_grid.py/img2img/Use text inputs instead of dropdowns/visible": true,
"customscript/xyz_grid.py/img2img/Use text inputs instead of dropdowns/value": false,
"img2img/Swap X/Y axes/visible": true,
"img2img/Swap Y/Z axes/visible": true,
"img2img/Swap X/Z axes/visible": true,
"img2img/📂/visible": true,
"img2img/💾/visible": true,
"img2img/🗃️/visible": true,
"img2img/🖼️/visible": true,
"img2img/🎨️/visible": true,
"img2img/Description/visible": true,
"img2img/Description/value": "",
"img2img/Cancel/visible": true,
"img2img/Replace preview/visible": true,
"img2img/Save/visible": true,
"img2img/Preferred VAE/visible": true,
"img2img/Preferred VAE/value": "None",
"img2img/Stable Diffusion version/visible": true,
"img2img/Stable Diffusion version/value": "Unknown",
"img2img/Activation text/visible": true,
"img2img/Activation text/value": "",
"img2img/Preferred weight/visible": true,
"img2img/Preferred weight/value": 0.0,
"img2img/Preferred weight/minimum": 0.0,
"img2img/Preferred weight/maximum": 2.0,
"img2img/Preferred weight/step": 0.01,
"img2img/Random prompt/visible": true,
"img2img/Random prompt/value": "",
"img2img/img2img_extra_sort_order/value": "Path",
"img2img/Show dirs/value": true,
"extras/Tabs@mode_extras/selected": null,
"extras/Input directory/visible": true,
"extras/Input directory/value": "",
"extras/Output directory/visible": true,
"extras/Output directory/value": "",
"extras/Show result images/visible": true,
"extras/Show result images/value": true,
"extras/Tabs@extras_resize_mode/selected": null,
"customscript/postprocessing_upscale.py/extras/Resize/visible": true,
"customscript/postprocessing_upscale.py/extras/Resize/value": 4,
"customscript/postprocessing_upscale.py/extras/Resize/minimum": 1.0,
"customscript/postprocessing_upscale.py/extras/Resize/maximum": 8.0,
"customscript/postprocessing_upscale.py/extras/Resize/step": 0.05,
"customscript/postprocessing_upscale.py/extras/Width/visible": true,
"customscript/postprocessing_upscale.py/extras/Width/value": 512,
"customscript/postprocessing_upscale.py/extras/Width/minimum": 64,
"customscript/postprocessing_upscale.py/extras/Width/maximum": 2048,
"customscript/postprocessing_upscale.py/extras/Width/step": 8,
"customscript/postprocessing_upscale.py/extras/Height/visible": true,
"customscript/postprocessing_upscale.py/extras/Height/value": 512,
"customscript/postprocessing_upscale.py/extras/Height/minimum": 64,
"customscript/postprocessing_upscale.py/extras/Height/maximum": 2048,
"customscript/postprocessing_upscale.py/extras/Height/step": 8,
"extras/⇅/visible": true,
"customscript/postprocessing_upscale.py/extras/Crop to fit/visible": true,
"customscript/postprocessing_upscale.py/extras/Crop to fit/value": true,
"customscript/postprocessing_upscale.py/extras/Upscaler 1/visible": true,
"customscript/postprocessing_upscale.py/extras/Upscaler 1/value": "None",
"customscript/postprocessing_upscale.py/extras/Upscaler 2/visible": true,
"customscript/postprocessing_upscale.py/extras/Upscaler 2/value": "None",
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/visible": true,
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/value": 0.0,
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/minimum": 0.0,
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/maximum": 1.0,
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/step": 0.001,
"extras/GFPGAN/visible": true,
"customscript/postprocessing_gfpgan.py/extras/GFPGAN/value": false,
"extras/GFPGAN/value": false,
"customscript/postprocessing_gfpgan.py/extras/Visibility/visible": true,
"customscript/postprocessing_gfpgan.py/extras/Visibility/value": 1.0,
"customscript/postprocessing_gfpgan.py/extras/Visibility/minimum": 0.0,
"customscript/postprocessing_gfpgan.py/extras/Visibility/maximum": 1.0,
"customscript/postprocessing_gfpgan.py/extras/Visibility/step": 0.001,
"extras/CodeFormer/visible": true,
"customscript/postprocessing_codeformer.py/extras/CodeFormer/value": false,
"extras/CodeFormer/value": false,
"customscript/postprocessing_codeformer.py/extras/Visibility/visible": true,
"customscript/postprocessing_codeformer.py/extras/Visibility/value": 1.0,
"customscript/postprocessing_codeformer.py/extras/Visibility/minimum": 0.0,
"customscript/postprocessing_codeformer.py/extras/Visibility/maximum": 1.0,
"customscript/postprocessing_codeformer.py/extras/Visibility/step": 0.001,
"customscript/postprocessing_codeformer.py/extras/Weight (0 = maximum effect, 1 = minimum effect)/visible": true,
"customscript/postprocessing_codeformer.py/extras/Weight (0 = maximum effect, 1 = minimum effect)/value": 0,
"customscript/postprocessing_codeformer.py/extras/Weight (0 = maximum effect, 1 = minimum effect)/minimum": 0.0,
"customscript/postprocessing_codeformer.py/extras/Weight (0 = maximum effect, 1 = minimum effect)/maximum": 1.0,
"customscript/postprocessing_codeformer.py/extras/Weight (0 = maximum effect, 1 = minimum effect)/step": 0.001,
"extras/Auto focal point crop/visible": true,
"customscript/postprocessing_focal_crop.py/extras/Auto focal point crop/value": false,
"extras/Auto focal point crop/value": false,
"customscript/postprocessing_focal_crop.py/extras/Focal point face weight/visible": true,
"customscript/postprocessing_focal_crop.py/extras/Focal point face weight/value": 0.9,
"customscript/postprocessing_focal_crop.py/extras/Focal point face weight/minimum": 0.0,
"customscript/postprocessing_focal_crop.py/extras/Focal point face weight/maximum": 1.0,
"customscript/postprocessing_focal_crop.py/extras/Focal point face weight/step": 0.05,
"customscript/postprocessing_focal_crop.py/extras/Focal point entropy weight/visible": true,
"customscript/postprocessing_focal_crop.py/extras/Focal point entropy weight/value": 0.15,
"customscript/postprocessing_focal_crop.py/extras/Focal point entropy weight/minimum": 0.0,
"customscript/postprocessing_focal_crop.py/extras/Focal point entropy weight/maximum": 1.0,
"customscript/postprocessing_focal_crop.py/extras/Focal point entropy weight/step": 0.05,
"customscript/postprocessing_focal_crop.py/extras/Focal point edges weight/visible": true,
"customscript/postprocessing_focal_crop.py/extras/Focal point edges weight/value": 0.5,
"customscript/postprocessing_focal_crop.py/extras/Focal point edges weight/minimum": 0.0,
"customscript/postprocessing_focal_crop.py/extras/Focal point edges weight/maximum": 1.0,
"customscript/postprocessing_focal_crop.py/extras/Focal point edges weight/step": 0.05,
"customscript/postprocessing_focal_crop.py/extras/Create debug image/visible": true,
"customscript/postprocessing_focal_crop.py/extras/Create debug image/value": false,
"extras/Auto-sized crop/visible": true,
"customscript/processing_autosized_crop.py/extras/Auto-sized crop/value": false,
"extras/Auto-sized crop/value": false,
"customscript/processing_autosized_crop.py/extras/Dimension lower bound/visible": true,
"customscript/processing_autosized_crop.py/extras/Dimension lower bound/value": 384,
"customscript/processing_autosized_crop.py/extras/Dimension lower bound/minimum": 64,
"customscript/processing_autosized_crop.py/extras/Dimension lower bound/maximum": 2048,
"customscript/processing_autosized_crop.py/extras/Dimension lower bound/step": 8,
"customscript/processing_autosized_crop.py/extras/Dimension upper bound/visible": true,
"customscript/processing_autosized_crop.py/extras/Dimension upper bound/value": 768,
"customscript/processing_autosized_crop.py/extras/Dimension upper bound/minimum": 64,
"customscript/processing_autosized_crop.py/extras/Dimension upper bound/maximum": 2048,
"customscript/processing_autosized_crop.py/extras/Dimension upper bound/step": 8,
"customscript/processing_autosized_crop.py/extras/Area lower bound/visible": true,
"customscript/processing_autosized_crop.py/extras/Area lower bound/value": 4096,
"customscript/processing_autosized_crop.py/extras/Area lower bound/minimum": 4096,
"customscript/processing_autosized_crop.py/extras/Area lower bound/maximum": 4194304,
"customscript/processing_autosized_crop.py/extras/Area lower bound/step": 1,
"customscript/processing_autosized_crop.py/extras/Area upper bound/visible": true,
"customscript/processing_autosized_crop.py/extras/Area upper bound/value": 409600,
"customscript/processing_autosized_crop.py/extras/Area upper bound/minimum": 4096,
"customscript/processing_autosized_crop.py/extras/Area upper bound/maximum": 4194304,
"customscript/processing_autosized_crop.py/extras/Area upper bound/step": 1,
"customscript/processing_autosized_crop.py/extras/Resizing objective/visible": true,
"customscript/processing_autosized_crop.py/extras/Resizing objective/value": "Maximize area",
"customscript/processing_autosized_crop.py/extras/Error threshold/visible": true,
"customscript/processing_autosized_crop.py/extras/Error threshold/value": 0.1,
"customscript/processing_autosized_crop.py/extras/Error threshold/minimum": 0,
"customscript/processing_autosized_crop.py/extras/Error threshold/maximum": 1,
"customscript/processing_autosized_crop.py/extras/Error threshold/step": 0.01,
"extras/Caption/visible": true,
"customscript/postprocessing_caption.py/extras/Caption/value": false,
"extras/Caption/value": false,
"extras/Create flipped copies/visible": true,
"customscript/postprocessing_create_flipped_copies.py/extras/Create flipped copies/value": false,
"extras/Create flipped copies/value": false,
"extras/Split oversized images/visible": true,
"customscript/postprocessing_split_oversized.py/extras/Split oversized images/value": false,
"extras/Split oversized images/value": false,
"customscript/postprocessing_split_oversized.py/extras/Threshold/visible": true,
"customscript/postprocessing_split_oversized.py/extras/Threshold/value": 0.5,
"customscript/postprocessing_split_oversized.py/extras/Threshold/minimum": 0.0,
"customscript/postprocessing_split_oversized.py/extras/Threshold/maximum": 1.0,
"customscript/postprocessing_split_oversized.py/extras/Threshold/step": 0.05,
"customscript/postprocessing_split_oversized.py/extras/Overlap ratio/visible": true,
"customscript/postprocessing_split_oversized.py/extras/Overlap ratio/value": 0.2,
"customscript/postprocessing_split_oversized.py/extras/Overlap ratio/minimum": 0.0,
"customscript/postprocessing_split_oversized.py/extras/Overlap ratio/maximum": 0.9,
"customscript/postprocessing_split_oversized.py/extras/Overlap ratio/step": 0.05,
"extras/Interrupt/visible": true,
"extras/Skip/visible": true,
"extras/Generate/visible": true,
"extras/📂/visible": true,
"extras/🖼️/visible": true,
"extras/🎨️/visible": true,
"extras/📐/visible": true,
"pnginfo/Send to txt2img/visible": true,
"pnginfo/Send to img2img/visible": true,
"pnginfo/Send to inpaint/visible": true,
"pnginfo/Send to extras/visible": true,
"modelmerger/Primary model (A)/visible": true,
"modelmerger/Primary model (A)/value": null,
"modelmerger/🔄/visible": true,
"modelmerger/Secondary model (B)/visible": true,
"modelmerger/Secondary model (B)/value": null,
"modelmerger/Tertiary model (C)/visible": true,
"modelmerger/Tertiary model (C)/value": null,
"modelmerger/Custom Name (Optional)/visible": true,
"modelmerger/Custom Name (Optional)/value": "",
"modelmerger/Multiplier (M) - set to 0 to get model A/visible": true,
"modelmerger/Multiplier (M) - set to 0 to get model A/value": 0.3,
"modelmerger/Multiplier (M) - set to 0 to get model A/minimum": 0.0,
"modelmerger/Multiplier (M) - set to 0 to get model A/maximum": 1.0,
"modelmerger/Multiplier (M) - set to 0 to get model A/step": 0.05,
"modelmerger/Interpolation Method/visible": true,
"modelmerger/Interpolation Method/value": "Weighted sum",
"modelmerger/Checkpoint format/visible": true,
"modelmerger/Checkpoint format/value": "safetensors",
"modelmerger/Save as float16/visible": true,
"modelmerger/Save as float16/value": false,
"modelmerger/Copy config from/visible": true,
"modelmerger/Copy config from/value": "A, B or C",
"modelmerger/Bake in VAE/visible": true,
"modelmerger/Bake in VAE/value": "None",
"modelmerger/Discard weights with matching name/visible": true,
"modelmerger/Discard weights with matching name/value": "",
"modelmerger/Save metadata/visible": true,
"modelmerger/Save metadata/value": true,
"modelmerger/Add merge recipe metadata/visible": true,
"modelmerger/Add merge recipe metadata/value": true,
"modelmerger/Copy metadata from merged models/visible": true,
"modelmerger/Copy metadata from merged models/value": true,
"modelmerger/Read metadata from selected checkpoints/visible": true,
"modelmerger/Merge/visible": true,
"train/Tabs@train_tabs/selected": null,
"train/Name/visible": true,
"train/Name/value": "",
"train/Initialization text/visible": true,
"train/Initialization text/value": "*",
"train/Number of vectors per token/visible": true,
"train/Number of vectors per token/value": 1,
"train/Number of vectors per token/minimum": 1,
"train/Number of vectors per token/maximum": 75,
"train/Number of vectors per token/step": 1,
"train/Overwrite Old Embedding/visible": true,
"train/Overwrite Old Embedding/value": false,
"train/Create embedding/visible": true,
"train/Enter hypernetwork layer structure/visible": true,
"train/Enter hypernetwork layer structure/value": "1, 2, 1",
"train/Select activation function of hypernetwork. Recommended : Swish / Linear(none)/visible": true,
"train/Select activation function of hypernetwork. Recommended : Swish / Linear(none)/value": "linear",
"train/Select Layer weights initialization. Recommended: Kaiming for relu-like, Xavier for sigmoid-like, Normal otherwise/visible": true,
"train/Select Layer weights initialization. Recommended: Kaiming for relu-like, Xavier for sigmoid-like, Normal otherwise/value": "Normal",
"train/Add layer normalization/visible": true,
"train/Add layer normalization/value": false,
"train/Use dropout/visible": true,
"train/Use dropout/value": false,
"train/Enter hypernetwork Dropout structure (or empty). Recommended : 0~0.35 incrementing sequence: 0, 0.05, 0.15/visible": true,
"train/Enter hypernetwork Dropout structure (or empty). Recommended : 0~0.35 incrementing sequence: 0, 0.05, 0.15/value": "0, 0, 0",
"train/Overwrite Old Hypernetwork/visible": true,
"train/Overwrite Old Hypernetwork/value": false,
"train/Create hypernetwork/visible": true,
"train/Embedding/visible": true,
"train/Embedding/value": null,
"train/🔄/visible": true,
"train/Hypernetwork/visible": true,
"train/Hypernetwork/value": null,
"train/Embedding Learning rate/visible": true,
"train/Embedding Learning rate/value": "0.005",
"train/Hypernetwork Learning rate/visible": true,
"train/Hypernetwork Learning rate/value": "0.00001",
"train/Gradient Clipping/visible": true,
"train/Gradient Clipping/value": "disabled",
"train/Batch size/visible": true,
"train/Batch size/value": 1,
"train/Gradient accumulation steps/visible": true,
"train/Gradient accumulation steps/value": 1,
"train/Dataset directory/visible": true,
"train/Dataset directory/value": "",
"train/Log directory/visible": true,
"train/Log directory/value": "textual_inversion",
"train/Prompt template/visible": true,
"train/Prompt template/value": "style_filewords.txt",
"train/Width/visible": true,
"train/Width/value": 512,
"train/Width/minimum": 64,
"train/Width/maximum": 2048,
"train/Width/step": 8,
"train/Height/visible": true,
"train/Height/value": 512,
"train/Height/minimum": 64,
"train/Height/maximum": 2048,
"train/Height/step": 8,
"train/Do not resize images/visible": true,
"train/Do not resize images/value": false,
"train/Max steps/visible": true,
"train/Max steps/value": 100000,
"train/Save an image to log directory every N steps, 0 to disable/visible": true,
"train/Save an image to log directory every N steps, 0 to disable/value": 500,
"train/Save a copy of embedding to log directory every N steps, 0 to disable/visible": true,
"train/Save a copy of embedding to log directory every N steps, 0 to disable/value": 500,
"train/Use PNG alpha channel as loss weight/visible": true,
"train/Use PNG alpha channel as loss weight/value": false,
"train/Save images with embedding in PNG chunks/visible": true,
"train/Save images with embedding in PNG chunks/value": true,
"train/Read parameters (prompt, etc...) from txt2img tab when making previews/visible": true,
"train/Read parameters (prompt, etc...) from txt2img tab when making previews/value": false,
"train/Shuffle tags by ',' when creating prompts./visible": true,
"train/Shuffle tags by ',' when creating prompts./value": false,
"train/Drop out tags when creating prompts./visible": true,
"train/Drop out tags when creating prompts./value": 0,
"train/Drop out tags when creating prompts./minimum": 0,
"train/Drop out tags when creating prompts./maximum": 1,
"train/Drop out tags when creating prompts./step": 0.1,
"train/Choose latent sampling method/visible": true,
"train/Choose latent sampling method/value": "once",
"train/Train Embedding/visible": true,
"train/Interrupt/visible": true,
"train/Train Hypernetwork/visible": true,
"webui/Tabs@tabs/selected": null,
"txt2img/ReActor/visible": true,
"customscript/reactor_faceswap.py/txt2img/ReActor/value": false,
"txt2img/ReActor/value": false,
"customscript/reactor_faceswap.py/txt2img/Select Source/visible": true,
"customscript/reactor_faceswap.py/txt2img/Select Source/value": "Image(s)",
"customscript/reactor_faceswap.py/txt2img/Source Folder/visible": true,
"customscript/reactor_faceswap.py/txt2img/Source Folder/value": "",
"customscript/reactor_faceswap.py/txt2img/Random Image/visible": true,
"customscript/reactor_faceswap.py/txt2img/Random Image/value": false,
"customscript/reactor_faceswap.py/txt2img/Save Original/visible": true,
"customscript/reactor_faceswap.py/txt2img/Save Original/value": false,
"customscript/reactor_faceswap.py/txt2img/Face Mask Correction/visible": true,
"customscript/reactor_faceswap.py/txt2img/Face Mask Correction/value": false,
"customscript/reactor_faceswap.py/txt2img/Comma separated face number(s); Example: 0,2,1/visible": true,
"customscript/reactor_faceswap.py/txt2img/Comma separated face number(s); Example: 0,2,1/value": "0",
"customscript/reactor_faceswap.py/txt2img/Gender Detection (Source)/visible": true,
"customscript/reactor_faceswap.py/txt2img/Gender Detection (Source)/value": "No",
"customscript/reactor_faceswap.py/txt2img/Comma separated face number(s); Example: 1,0,2/visible": true,
"customscript/reactor_faceswap.py/txt2img/Comma separated face number(s); Example: 1,0,2/value": "0",
"customscript/reactor_faceswap.py/txt2img/Gender Detection (Target)/visible": true,
"customscript/reactor_faceswap.py/txt2img/Gender Detection (Target)/value": "No",
"customscript/reactor_faceswap.py/txt2img/Restore Face/visible": true,
"customscript/reactor_faceswap.py/txt2img/Restore Face/value": "CodeFormer",
"customscript/reactor_faceswap.py/txt2img/Restore Face Visibility/visible": true,
"customscript/reactor_faceswap.py/txt2img/Restore Face Visibility/value": 1,
"customscript/reactor_faceswap.py/txt2img/Restore Face Visibility/minimum": 0,
"customscript/reactor_faceswap.py/txt2img/Restore Face Visibility/maximum": 1,
"customscript/reactor_faceswap.py/txt2img/Restore Face Visibility/step": 0.1,
"customscript/reactor_faceswap.py/txt2img/CodeFormer Weight (Fidelity)/visible": true,
"customscript/reactor_faceswap.py/txt2img/CodeFormer Weight (Fidelity)/value": 0.5,
"customscript/reactor_faceswap.py/txt2img/CodeFormer Weight (Fidelity)/minimum": 0,
"customscript/reactor_faceswap.py/txt2img/CodeFormer Weight (Fidelity)/maximum": 1,
"customscript/reactor_faceswap.py/txt2img/CodeFormer Weight (Fidelity)/step": 0.1,
"customscript/reactor_faceswap.py/txt2img/Swap in source image/value": false,
"customscript/reactor_faceswap.py/txt2img/Swap in generated image/value": true,
"customscript/reactor_faceswap.py/txt2img/Threshold/visible": true,
"customscript/reactor_faceswap.py/txt2img/Threshold/value": 0.5,
"customscript/reactor_faceswap.py/txt2img/Threshold/minimum": 0.1,
"customscript/reactor_faceswap.py/txt2img/Threshold/maximum": 1.0,
"customscript/reactor_faceswap.py/txt2img/Threshold/step": 0.01,
"customscript/reactor_faceswap.py/txt2img/Max Faces/visible": true,
"customscript/reactor_faceswap.py/txt2img/Max Faces/value": 0,
"customscript/reactor_faceswap.py/txt2img/Max Faces/minimum": 0,
"customscript/reactor_faceswap.py/txt2img/Max Faces/maximum": 20,
"customscript/reactor_faceswap.py/txt2img/Max Faces/step": 1,
"txt2img/Clear Source Images Hash (Single)/visible": true,
"txt2img/Clear Source Images Hash (Multiple)/visible": true,
"txt2img/Clear Target Image Hash/visible": true,
"txt2img/Clear All Hash/visible": true,
"customscript/reactor_faceswap.py/txt2img/1. Restore Face -> 2. Upscale (-Uncheck- if you want vice versa)/visible": true,
"customscript/reactor_faceswap.py/txt2img/1. Restore Face -> 2. Upscale (-Uncheck- if you want vice versa)/value": true,
"customscript/reactor_faceswap.py/txt2img/Force Upscale/visible": true,
"customscript/reactor_faceswap.py/txt2img/Force Upscale/value": false,
"customscript/reactor_faceswap.py/txt2img/Upscaler/visible": true,
"customscript/reactor_faceswap.py/txt2img/Upscaler/value": "None",
"customscript/reactor_faceswap.py/txt2img/Scale by/visible": true,
"customscript/reactor_faceswap.py/txt2img/Scale by/value": 1,
"customscript/reactor_faceswap.py/txt2img/Scale by/minimum": 1,
"customscript/reactor_faceswap.py/txt2img/Scale by/maximum": 8,
"customscript/reactor_faceswap.py/txt2img/Scale by/step": 0.1,
"customscript/reactor_faceswap.py/txt2img/Upscaler Visibility (if scale = 1)/visible": true,
"customscript/reactor_faceswap.py/txt2img/Upscaler Visibility (if scale = 1)/value": 1,
"customscript/reactor_faceswap.py/txt2img/Upscaler Visibility (if scale = 1)/minimum": 0,
"customscript/reactor_faceswap.py/txt2img/Upscaler Visibility (if scale = 1)/maximum": 1,
"customscript/reactor_faceswap.py/txt2img/Upscaler Visibility (if scale = 1)/step": 0.1,
"txt2img/Face Model Name/visible": true,
"txt2img/Face Model Name/value": "",
"txt2img/Build and Save/visible": true,
"txt2img/Compute Method/visible": true,
"txt2img/Compute Method/value": "Mean",
"txt2img/Check -Embedding Shape- on Similarity/visible": true,
"txt2img/Check -Embedding Shape- on Similarity/value": false,
"customscript/reactor_faceswap.py/txt2img/Model/visible": true,
"customscript/reactor_faceswap.py/txt2img/Model/value": "inswapper_128.onnx",
"customscript/reactor_faceswap.py/txt2img/Console Log Level/visible": true,
"customscript/reactor_faceswap.py/txt2img/Console Log Level/value": "Minimum",
"customscript/reactor_faceswap.py/txt2img/Source Image Hash Check/visible": true,
"customscript/reactor_faceswap.py/txt2img/Source Image Hash Check/value": true,
"customscript/reactor_faceswap.py/txt2img/Target Image Hash Check/visible": true,
"customscript/reactor_faceswap.py/txt2img/Target Image Hash Check/value": false,
"img2img/ReActor/visible": true,
"customscript/reactor_faceswap.py/img2img/ReActor/value": false,
"img2img/ReActor/value": false,
"customscript/reactor_faceswap.py/img2img/Select Source/visible": true,
"customscript/reactor_faceswap.py/img2img/Select Source/value": "Image(s)",
"customscript/reactor_faceswap.py/img2img/Source Folder/visible": true,
"customscript/reactor_faceswap.py/img2img/Source Folder/value": "",
"customscript/reactor_faceswap.py/img2img/Random Image/visible": true,
"customscript/reactor_faceswap.py/img2img/Random Image/value": false,
"customscript/reactor_faceswap.py/img2img/Save Original (Swap in generated only)/visible": true,
"customscript/reactor_faceswap.py/img2img/Save Original (Swap in generated only)/value": false,
"customscript/reactor_faceswap.py/img2img/Face Mask Correction/visible": true,
"customscript/reactor_faceswap.py/img2img/Face Mask Correction/value": false,
"customscript/reactor_faceswap.py/img2img/Comma separated face number(s); Example: 0,2,1/visible": true,
"customscript/reactor_faceswap.py/img2img/Comma separated face number(s); Example: 0,2,1/value": "0",
"customscript/reactor_faceswap.py/img2img/Gender Detection (Source)/visible": true,
"customscript/reactor_faceswap.py/img2img/Gender Detection (Source)/value": "No",
"customscript/reactor_faceswap.py/img2img/Comma separated face number(s); Example: 1,0,2/visible": true,
"customscript/reactor_faceswap.py/img2img/Comma separated face number(s); Example: 1,0,2/value": "0",
"customscript/reactor_faceswap.py/img2img/Gender Detection (Target)/visible": true,
"customscript/reactor_faceswap.py/img2img/Gender Detection (Target)/value": "No",
"customscript/reactor_faceswap.py/img2img/Restore Face/visible": true,
"customscript/reactor_faceswap.py/img2img/Restore Face/value": "CodeFormer",
"customscript/reactor_faceswap.py/img2img/Restore Face Visibility/visible": true,
"customscript/reactor_faceswap.py/img2img/Restore Face Visibility/value": 1,
"customscript/reactor_faceswap.py/img2img/Restore Face Visibility/minimum": 0,
"customscript/reactor_faceswap.py/img2img/Restore Face Visibility/maximum": 1,
"customscript/reactor_faceswap.py/img2img/Restore Face Visibility/step": 0.1,
"customscript/reactor_faceswap.py/img2img/CodeFormer Weight (Fidelity)/visible": true,
"customscript/reactor_faceswap.py/img2img/CodeFormer Weight (Fidelity)/value": 0.5,
"customscript/reactor_faceswap.py/img2img/CodeFormer Weight (Fidelity)/minimum": 0,
"customscript/reactor_faceswap.py/img2img/CodeFormer Weight (Fidelity)/maximum": 1,
"customscript/reactor_faceswap.py/img2img/CodeFormer Weight (Fidelity)/step": 0.1,
"customscript/reactor_faceswap.py/img2img/Swap in source image/visible": true,
"customscript/reactor_faceswap.py/img2img/Swap in source image/value": false,
"customscript/reactor_faceswap.py/img2img/Swap in generated image/visible": true,
"customscript/reactor_faceswap.py/img2img/Swap in generated image/value": true,
"customscript/reactor_faceswap.py/img2img/Threshold/visible": true,
"customscript/reactor_faceswap.py/img2img/Threshold/value": 0.5,
"customscript/reactor_faceswap.py/img2img/Threshold/minimum": 0.1,
"customscript/reactor_faceswap.py/img2img/Threshold/maximum": 1.0,
"customscript/reactor_faceswap.py/img2img/Threshold/step": 0.01,
"customscript/reactor_faceswap.py/img2img/Max Faces/visible": true,
"customscript/reactor_faceswap.py/img2img/Max Faces/value": 0,
"customscript/reactor_faceswap.py/img2img/Max Faces/minimum": 0,
"customscript/reactor_faceswap.py/img2img/Max Faces/maximum": 20,
"customscript/reactor_faceswap.py/img2img/Max Faces/step": 1,
"img2img/Clear Source Images Hash (Single)/visible": true,
"img2img/Clear Source Images Hash (Multiple)/visible": true,
"img2img/Clear Target Image Hash/visible": true,
"img2img/Clear All Hash/visible": true,
"customscript/reactor_faceswap.py/img2img/1. Restore Face -> 2. Upscale (-Uncheck- if you want vice versa)/visible": true,
"customscript/reactor_faceswap.py/img2img/1. Restore Face -> 2. Upscale (-Uncheck- if you want vice versa)/value": true,
"customscript/reactor_faceswap.py/img2img/Force Upscale/visible": true,
"customscript/reactor_faceswap.py/img2img/Force Upscale/value": false,
"customscript/reactor_faceswap.py/img2img/Upscaler/visible": true,
"customscript/reactor_faceswap.py/img2img/Upscaler/value": "None",
"customscript/reactor_faceswap.py/img2img/Scale by/visible": true,
"customscript/reactor_faceswap.py/img2img/Scale by/value": 1,
"customscript/reactor_faceswap.py/img2img/Scale by/minimum": 1,
"customscript/reactor_faceswap.py/img2img/Scale by/maximum": 8,
"customscript/reactor_faceswap.py/img2img/Scale by/step": 0.1,
"customscript/reactor_faceswap.py/img2img/Upscaler Visibility (if scale = 1)/visible": true,
"customscript/reactor_faceswap.py/img2img/Upscaler Visibility (if scale = 1)/value": 1,
"customscript/reactor_faceswap.py/img2img/Upscaler Visibility (if scale = 1)/minimum": 0,
"customscript/reactor_faceswap.py/img2img/Upscaler Visibility (if scale = 1)/maximum": 1,
"customscript/reactor_faceswap.py/img2img/Upscaler Visibility (if scale = 1)/step": 0.1,
"img2img/Face Model Name/visible": true,
"img2img/Face Model Name/value": "",
"img2img/Build and Save/visible": true,
"img2img/Compute Method/visible": true,
"img2img/Compute Method/value": "Mean",
"img2img/Check -Embedding Shape- on Similarity/visible": true,
"img2img/Check -Embedding Shape- on Similarity/value": false,
"customscript/reactor_faceswap.py/img2img/Model/visible": true,
"customscript/reactor_faceswap.py/img2img/Model/value": "inswapper_128.onnx",
"customscript/reactor_faceswap.py/img2img/Console Log Level/visible": true,
"customscript/reactor_faceswap.py/img2img/Console Log Level/value": "Minimum",
"customscript/reactor_faceswap.py/img2img/Source Image Hash Check/visible": true,
"customscript/reactor_faceswap.py/img2img/Source Image Hash Check/value": true,
"customscript/reactor_faceswap.py/img2img/Target Image Hash Check/visible": true,
"customscript/reactor_faceswap.py/img2img/Target Image Hash Check/value": false,
"extras/ReActor/visible": true,
"customscript/reactor_faceswap.py/extras/ReActor/value": false,
"extras/ReActor/value": false,
"customscript/reactor_faceswap.py/extras/Select Source/visible": true,
"customscript/reactor_faceswap.py/extras/Select Source/value": "Image(s)",
"extras/🔄/visible": true,
"customscript/reactor_faceswap.py/extras/Source Folder | Сomparison grid as a result/visible": true,
"customscript/reactor_faceswap.py/extras/Source Folder | Сomparison grid as a result/value": "",
"customscript/reactor_faceswap.py/extras/Random Image/visible": true,
"customscript/reactor_faceswap.py/extras/Random Image/value": false,
"extras/Save Original/value": false,
"customscript/reactor_faceswap.py/extras/Face Mask Correction/visible": true,
"customscript/reactor_faceswap.py/extras/Face Mask Correction/value": false,
"customscript/reactor_faceswap.py/extras/Comma separated face number(s); Example: 0,2,1/visible": true,
"customscript/reactor_faceswap.py/extras/Comma separated face number(s); Example: 0,2,1/value": "0",
"customscript/reactor_faceswap.py/extras/Gender Detection (Source)/visible": true,
"customscript/reactor_faceswap.py/extras/Gender Detection (Source)/value": "No",
"customscript/reactor_faceswap.py/extras/Comma separated face number(s); Example: 1,0,2/visible": true,
"customscript/reactor_faceswap.py/extras/Comma separated face number(s); Example: 1,0,2/value": "0",
"customscript/reactor_faceswap.py/extras/Gender Detection (Target)/visible": true,
"customscript/reactor_faceswap.py/extras/Gender Detection (Target)/value": "No",
"customscript/reactor_faceswap.py/extras/Restore Face/visible": true,
"customscript/reactor_faceswap.py/extras/Restore Face/value": "CodeFormer",
"customscript/reactor_faceswap.py/extras/Restore Face Visibility/visible": true,
"customscript/reactor_faceswap.py/extras/Restore Face Visibility/value": 1,
"customscript/reactor_faceswap.py/extras/Restore Face Visibility/minimum": 0,
"customscript/reactor_faceswap.py/extras/Restore Face Visibility/maximum": 1,
"customscript/reactor_faceswap.py/extras/Restore Face Visibility/step": 0.1,
"customscript/reactor_faceswap.py/extras/CodeFormer Weight (Fidelity)/visible": true,
"customscript/reactor_faceswap.py/extras/CodeFormer Weight (Fidelity)/value": 0.5,
"customscript/reactor_faceswap.py/extras/CodeFormer Weight (Fidelity)/minimum": 0,
"customscript/reactor_faceswap.py/extras/CodeFormer Weight (Fidelity)/maximum": 1,
"customscript/reactor_faceswap.py/extras/CodeFormer Weight (Fidelity)/step": 0.1,
"extras/Swap in source image/value": false,
"extras/Swap in generated image/value": true,
"customscript/reactor_faceswap.py/extras/Threshold/visible": true,
"customscript/reactor_faceswap.py/extras/Threshold/value": 0.5,
"customscript/reactor_faceswap.py/extras/Threshold/minimum": 0.1,
"customscript/reactor_faceswap.py/extras/Threshold/maximum": 1.0,
"customscript/reactor_faceswap.py/extras/Threshold/step": 0.01,
"customscript/reactor_faceswap.py/extras/Max Faces/visible": true,
"customscript/reactor_faceswap.py/extras/Max Faces/value": 0,
"customscript/reactor_faceswap.py/extras/Max Faces/minimum": 0,
"customscript/reactor_faceswap.py/extras/Max Faces/maximum": 20,
"customscript/reactor_faceswap.py/extras/Max Faces/step": 1,
"extras/Clear Source Images Hash (Single)/visible": true,
"extras/Clear Source Images Hash (Multiple)/visible": true,
"extras/Clear Target Image Hash/visible": true,
"extras/Clear All Hash/visible": true,
"customscript/reactor_faceswap.py/extras/1. Restore Face -> 2. Upscale (-Uncheck- if you want vice versa)/visible": true,
"customscript/reactor_faceswap.py/extras/1. Restore Face -> 2. Upscale (-Uncheck- if you want vice versa)/value": true,
"customscript/reactor_faceswap.py/extras/Force Upscale/visible": true,
"customscript/reactor_faceswap.py/extras/Force Upscale/value": false,
"customscript/reactor_faceswap.py/extras/Upscaler/visible": true,
"customscript/reactor_faceswap.py/extras/Upscaler/value": "None",
"customscript/reactor_faceswap.py/extras/Scale by/visible": true,
"customscript/reactor_faceswap.py/extras/Scale by/value": 1,
"customscript/reactor_faceswap.py/extras/Scale by/minimum": 1,
"customscript/reactor_faceswap.py/extras/Scale by/maximum": 8,
"customscript/reactor_faceswap.py/extras/Scale by/step": 0.1,
"customscript/reactor_faceswap.py/extras/Upscaler Visibility (if scale = 1)/visible": true,
"customscript/reactor_faceswap.py/extras/Upscaler Visibility (if scale = 1)/value": 1,
"customscript/reactor_faceswap.py/extras/Upscaler Visibility (if scale = 1)/minimum": 0,
"customscript/reactor_faceswap.py/extras/Upscaler Visibility (if scale = 1)/maximum": 1,
"customscript/reactor_faceswap.py/extras/Upscaler Visibility (if scale = 1)/step": 0.1,
"extras/Face Model Name/visible": true,
"extras/Face Model Name/value": "",
"extras/Build and Save/visible": true,
"extras/Compute Method/visible": true,
"extras/Compute Method/value": "Mean",
"extras/Check -Embedding Shape- on Similarity/visible": true,
"extras/Check -Embedding Shape- on Similarity/value": false,
"extras/Save/visible": true,
"customscript/reactor_faceswap.py/extras/Model/visible": true,
"customscript/reactor_faceswap.py/extras/Model/value": "inswapper_128.onnx",
"customscript/reactor_faceswap.py/extras/Console Log Level/visible": true,
"customscript/reactor_faceswap.py/extras/Console Log Level/value": "Minimum",
"extras/Source Image Hash Check/visible": true,
"extras/Source Image Hash Check/value": true,
"extras/Target Image Hash Check/visible": true,
"extras/Target Image Hash Check/value": false,
"civitai_interface/Search type:/visible": true,
"civitai_interface/Search type:/value": "Model name",
"civitai_interface/Content type:/visible": true,
"civitai_interface/Content type:/value": null,
"civitai_interface/Base model:/visible": true,
"civitai_interface/Base model:/value": null,
"civitai_interface/Time period:/visible": true,
"civitai_interface/Time period:/value": "All Time",
"civitai_interface/Sort by:/visible": true,
"civitai_interface/Sort by:/value": "Most Downloaded",
"civitai_interface/Save info after download/visible": true,
"civitai_interface/Save info after download/value": true,
"civitai_interface/NSFW content/visible": true,
"civitai_interface/NSFW content/value": false,
"civitai_interface/Divide cards by date/visible": true,
"civitai_interface/Divide cards by date/value": false,
"civitai_interface/Liked models only/visible": true,
"civitai_interface/Liked models only/value": false,
"civitai_interface/Hide installed models/visible": true,
"civitai_interface/Hide installed models/value": false,
"civitai_interface/Tile size:/visible": true,
"civitai_interface/Tile size:/value": 8,
"civitai_interface/Tile size:/minimum": 4,
"civitai_interface/Tile size:/maximum": 20,
"civitai_interface/Tile size:/step": 0.25,
"civitai_interface/Tile count:/visible": true,
"civitai_interface/Tile count:/value": 15,
"civitai_interface/Tile count:/minimum": 1,
"civitai_interface/Tile count:/maximum": 100,
"civitai_interface/Tile count:/step": 1,
"civitai_interface/Save settings as default/visible": true,
"civitai_interface//visible": true,
"civitai_interface//value": "",
"civitai_interface/Prev page/visible": true,
"civitai_interface/Current page/visible": true,
"civitai_interface/Current page/value": 1,
"civitai_interface/Current page/minimum": 1,
"civitai_interface/Current page/maximum": 1,
"civitai_interface/Current page/step": 1,
"civitai_interface/Next page/visible": true,
"civitai_interface/Model:/visible": true,
"civitai_interface/Model:/value": null,
"civitai_interface/Version:/visible": true,
"civitai_interface/Version:/value": null,
"civitai_interface/File:/visible": true,
"civitai_interface/File:/value": null,
"civitai_interface/Download folder:/visible": true,
"civitai_interface/Download folder:/value": "",
"civitai_interface/Sub folder:/visible": true,
"civitai_interface/Sub folder:/value": null,
"civitai_interface/Trained tags (if any):/visible": true,
"civitai_interface/Trained tags (if any):/value": null,
"civitai_interface/Base model: /visible": true,
"civitai_interface/Base model: /value": null,
"civitai_interface/Model filename:/visible": true,
"civitai_interface/Model filename:/value": null,
"civitai_interface/Save model info/visible": true,
"civitai_interface/Save images/visible": true,
"civitai_interface/Download model/visible": true,
"civitai_interface/Sub folder for selected files:/value": null,
"civitai_interface/↑/visible": true,
"civitai_interface/Overwrite any existing previews, tags or descriptions./visible": true,
"civitai_interface/Overwrite any existing previews, tags or descriptions./value": true,
"civitai_interface/One-Time Hash Generation for externally downloaded models./visible": true,
"civitai_interface/One-Time Hash Generation for externally downloaded models./value": true,
"civitai_interface/Save HTML file for each model when updating info & tags (increases process time)./visible": true,
"civitai_interface/Save HTML file for each model when updating info & tags (increases process time)./value": false,
"civitai_interface/Update model info & tags/visible": true,
"civitai_interface/Update model preview/visible": true,
"civitai_interface/Scan for available updates/visible": true,
"civitai_interface/Load all installed models/visible": true
} |