File size: 107,809 Bytes
4e87b2b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 |
{
"txt2img/\ud83d\udcc2/visible": true,
"txt2img/Save/visible": true,
"txt2img/Zip/visible": true,
"txt2img/Send to img2img/visible": true,
"txt2img/Send to inpaint/visible": true,
"txt2img/Send to extras/visible": true,
"txt2img/Interrupt/visible": true,
"txt2img/Skip/visible": true,
"txt2img/Generate/visible": true,
"txt2img/\u267e/visible": true,
"txt2img/Styles/visible": true,
"txt2img/Styles/value": [],
"txt2img/\ud83d\udd04/visible": true,
"txt2img/Prompt/visible": true,
"txt2img/Prompt/value": "",
"txt2img/Negative prompt/visible": true,
"txt2img/Negative prompt/value": "",
"txt2img/\u2199\ufe0f/visible": true,
"txt2img/\ud83d\uddd1\ufe0f/visible": true,
"txt2img/\ud83c\udfb4/visible": true,
"txt2img/\ud83d\udccb/visible": true,
"txt2img/\ud83d\udcbe/visible": true,
"txt2img/Tabs@txt2img_extra_tabs/selected": null,
"txt2img/Description/visible": true,
"txt2img/Description/value": "",
"txt2img/Cancel/visible": true,
"txt2img/Replace preview/visible": true,
"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/Override settings/value": null,
"txt2img/Sampling method/visible": true,
"txt2img/Sampling method/value": "Euler a",
"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/Width/visible": true,
"txt2img/Width/value": 512,
"txt2img/Width/minimum": 64,
"txt2img/Width/maximum": 2048,
"txt2img/Width/step": 8,
"txt2img/\u2b80/visible": true,
"txt2img/Height/visible": true,
"txt2img/Height/value": 512,
"txt2img/Height/minimum": 64,
"txt2img/Height/maximum": 2048,
"txt2img/Height/step": 8,
"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,
"txt2img/Seed/visible": true,
"txt2img/Seed/value": -1.0,
"txt2img/\ud83c\udfb2\ufe0f/visible": true,
"txt2img/\u267b\ufe0f/visible": true,
"txt2img/Extra/visible": true,
"txt2img/Extra/value": false,
"txt2img/Variation seed/visible": true,
"txt2img/Variation seed/value": -1.0,
"txt2img/Variation strength/visible": true,
"txt2img/Variation strength/value": 0.0,
"txt2img/Variation strength/minimum": 0,
"txt2img/Variation strength/maximum": 1,
"txt2img/Variation strength/step": 0.01,
"txt2img/Resize seed from width/visible": true,
"txt2img/Resize seed from width/value": 0,
"txt2img/Resize seed from width/minimum": 0,
"txt2img/Resize seed from width/maximum": 2048,
"txt2img/Resize seed from width/step": 8,
"txt2img/Resize seed from height/visible": true,
"txt2img/Resize seed from height/value": 0,
"txt2img/Resize seed from height/minimum": 0,
"txt2img/Resize seed from height/maximum": 2048,
"txt2img/Resize seed from height/step": 8,
"txt2img/Restore faces/visible": true,
"txt2img/Restore faces/value": false,
"txt2img/Tiling/visible": true,
"txt2img/Tiling/value": false,
"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 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/Tabs@txt2img_controlnet_tabs/selected": null,
"txt2img/Input Directory/visible": true,
"txt2img/Input Directory/value": "",
"txt2img/New Canvas Width/visible": true,
"txt2img/New Canvas Width/value": 512,
"txt2img/New Canvas Width/minimum": 256,
"txt2img/New Canvas Width/maximum": 1024,
"txt2img/New Canvas Width/step": 64,
"txt2img/New Canvas Height/visible": true,
"txt2img/New Canvas Height/value": 512,
"txt2img/New Canvas Height/minimum": 256,
"txt2img/New Canvas Height/maximum": 1024,
"txt2img/New Canvas Height/step": 64,
"txt2img/Create New Canvas/visible": true,
"txt2img/Enable/visible": true,
"txt2img/Enable/value": false,
"txt2img/Low VRAM/visible": true,
"txt2img/Low VRAM/value": false,
"txt2img/Pixel Perfect/visible": true,
"txt2img/Pixel Perfect/value": false,
"txt2img/Allow Preview/visible": true,
"txt2img/Allow Preview/value": false,
"txt2img/Preview as Input/value": false,
"txt2img/Control Type/visible": true,
"txt2img/Control Type/value": "All",
"txt2img/Preprocessor/visible": true,
"txt2img/Preprocessor/value": "none",
"txt2img/Model/visible": true,
"txt2img/Model/value": "None",
"txt2img/Control Weight/visible": true,
"txt2img/Control Weight/value": 1.0,
"txt2img/Control Weight/minimum": 0.0,
"txt2img/Control Weight/maximum": 2.0,
"txt2img/Control Weight/step": 0.05,
"txt2img/Starting Control Step/visible": true,
"txt2img/Starting Control Step/value": 0.0,
"txt2img/Starting Control Step/minimum": 0.0,
"txt2img/Starting Control Step/maximum": 1.0,
"txt2img/Starting Control Step/step": 0.01,
"txt2img/Ending Control Step/visible": true,
"txt2img/Ending Control Step/value": 1.0,
"txt2img/Ending Control Step/minimum": 0.0,
"txt2img/Ending Control Step/maximum": 1.0,
"txt2img/Ending Control Step/step": 0.01,
"txt2img/Preprocessor resolution/value": -1,
"txt2img/Preprocessor resolution/minimum": 64,
"txt2img/Preprocessor resolution/maximum": 2048,
"txt2img/Preprocessor resolution/step": 10,
"txt2img/Threshold A/value": -1,
"txt2img/Threshold A/minimum": 64,
"txt2img/Threshold A/maximum": 1024,
"txt2img/Threshold A/step": 1,
"txt2img/Threshold B/value": -1,
"txt2img/Threshold B/minimum": 64,
"txt2img/Threshold B/maximum": 1024,
"txt2img/Threshold B/step": 1,
"txt2img/Control Mode/visible": true,
"txt2img/Control Mode/value": "Balanced",
"txt2img/Resize Mode/visible": true,
"txt2img/Resize Mode/value": "Crop and Resize",
"txt2img/[Loopback] Automatically send generated images to this ControlNet unit/visible": true,
"txt2img/[Loopback] Automatically send generated images to this ControlNet unit/value": false,
"txt2img/Presets/visible": true,
"txt2img/Presets/value": "New Preset",
"txt2img/Preset name/visible": true,
"txt2img/Preset name/value": "",
"customscript/lora_block_weight.py/txt2img/Active/visible": true,
"customscript/lora_block_weight.py/txt2img/Active/value": true,
"customscript/lora_block_weight.py/txt2img/Debug/visible": true,
"customscript/lora_block_weight.py/txt2img/Debug/value": false,
"customscript/lora_block_weight.py/txt2img/diff image color/visible": true,
"customscript/lora_block_weight.py/txt2img/diff image color/value": "black",
"customscript/lora_block_weight.py/txt2img/change X-Y/visible": true,
"customscript/lora_block_weight.py/txt2img/change X-Y/value": false,
"customscript/lora_block_weight.py/txt2img/difference threshold/visible": true,
"customscript/lora_block_weight.py/txt2img/difference threshold/value": "20",
"customscript/lora_block_weight.py/txt2img/X Types/visible": true,
"customscript/lora_block_weight.py/txt2img/X Types/value": "values",
"customscript/lora_block_weight.py/txt2img/X Values/visible": true,
"customscript/lora_block_weight.py/txt2img/X Values/value": "0,0.25,0.5,0.75,1",
"customscript/lora_block_weight.py/txt2img/Y Types/visible": true,
"customscript/lora_block_weight.py/txt2img/Y Types/value": "Block ID",
"customscript/lora_block_weight.py/txt2img/Y Values/visible": true,
"customscript/lora_block_weight.py/txt2img/Y Values/value": "IN05-OUT05",
"customscript/lora_block_weight.py/txt2img/Z type/visible": true,
"customscript/lora_block_weight.py/txt2img/Z type/value": "none",
"customscript/lora_block_weight.py/txt2img/Z values/visible": true,
"customscript/lora_block_weight.py/txt2img/Z values/value": "",
"customscript/lora_block_weight.py/txt2img/Range/value": "0.5,1",
"customscript/lora_block_weight.py/txt2img/Blocks (12ALL,17ALL,20ALL,26ALL also can be used)/value": "BASE,IN00,IN01,IN02,IN03,IN04,IN05,IN06,IN07,IN08,IN09,IN10,IN11,M00,OUT00,OUT01,OUT02,OUT03,OUT04,OUT05,OUT06,OUT07,OUT08,OUT09,OUT10,OUT11",
"customscript/lora_block_weight.py/txt2img/number of seed/visible": true,
"customscript/lora_block_weight.py/txt2img/number of seed/value": 1.0,
"txt2img/Reload Presets/visible": true,
"txt2img/Reload Tags/visible": true,
"txt2img/Save Presets/visible": true,
"txt2img/Open TextEditor/visible": true,
"customscript/lora_block_weight.py/txt2img/print change/visible": true,
"customscript/lora_block_weight.py/txt2img/print change/value": false,
"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/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,
"txt2img/Swap X/Y axes/visible": true,
"txt2img/Swap Y/Z axes/visible": true,
"txt2img/Swap X/Z axes/visible": true,
"customscript/movie2movie.py/txt2img/Duration/visible": true,
"customscript/movie2movie.py/txt2img/Duration/value": 50.0,
"customscript/movie2movie.py/txt2img/Duration/minimum": 10.0,
"customscript/movie2movie.py/txt2img/Duration/maximum": 200.0,
"customscript/movie2movie.py/txt2img/Duration/step": 10,
"customscript/movie2movie.py/txt2img/Save preprocessed/visible": true,
"customscript/movie2movie.py/txt2img/Save preprocessed/value": false,
"img2img/\ud83d\udcc2/visible": true,
"img2img/Save/visible": true,
"img2img/Zip/visible": true,
"img2img/Send to img2img/visible": true,
"img2img/Send to inpaint/visible": true,
"img2img/Send to extras/visible": true,
"img2img/Interrupt/visible": true,
"img2img/Skip/visible": true,
"img2img/Generate/visible": true,
"img2img/\u267e/visible": true,
"img2img/Styles/visible": true,
"img2img/Styles/value": [],
"img2img/\ud83d\udd04/visible": true,
"img2img/Prompt/visible": true,
"img2img/Prompt/value": "",
"img2img/Negative prompt/visible": true,
"img2img/Negative prompt/value": "",
"img2img/\u2199\ufe0f/visible": true,
"img2img/\ud83d\uddd1\ufe0f/visible": true,
"img2img/\ud83c\udfb4/visible": true,
"img2img/\ud83d\udccb/visible": true,
"img2img/\ud83d\udcbe/visible": true,
"img2img/\ud83d\udde8/visible": true,
"img2img/\ud83d\uddea/visible": true,
"img2img/Tabs@img2img_extra_tabs/selected": null,
"img2img/Description/visible": true,
"img2img/Description/value": "",
"img2img/Cancel/visible": true,
"img2img/Replace preview/visible": true,
"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/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/Controlnet input directory/visible": true,
"img2img/Controlnet input directory/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/Tabs@scale_tabs/selected": null,
"img2img/Width/visible": true,
"img2img/Width/value": 512,
"img2img/Width/minimum": 64,
"img2img/Width/maximum": 2048,
"img2img/Width/step": 8,
"img2img/\u2b80/visible": true,
"img2img/\ud83d\udcd0/visible": true,
"img2img/Height/visible": true,
"img2img/Height/value": 512,
"img2img/Height/minimum": 64,
"img2img/Height/maximum": 2048,
"img2img/Height/step": 8,
"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/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/Override settings/value": null,
"img2img/Sampling method/visible": true,
"img2img/Sampling method/value": "Euler a",
"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/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,
"img2img/Seed/visible": true,
"img2img/Seed/value": -1.0,
"img2img/\ud83c\udfb2\ufe0f/visible": true,
"img2img/\u267b\ufe0f/visible": true,
"img2img/Extra/visible": true,
"img2img/Extra/value": false,
"img2img/Variation seed/visible": true,
"img2img/Variation seed/value": -1.0,
"img2img/Variation strength/visible": true,
"img2img/Variation strength/value": 0.0,
"img2img/Variation strength/minimum": 0,
"img2img/Variation strength/maximum": 1,
"img2img/Variation strength/step": 0.01,
"img2img/Resize seed from width/visible": true,
"img2img/Resize seed from width/value": 0,
"img2img/Resize seed from width/minimum": 0,
"img2img/Resize seed from width/maximum": 2048,
"img2img/Resize seed from width/step": 8,
"img2img/Resize seed from height/visible": true,
"img2img/Resize seed from height/value": 0,
"img2img/Resize seed from height/minimum": 0,
"img2img/Resize seed from height/maximum": 2048,
"img2img/Resize seed from height/step": 8,
"img2img/Restore faces/visible": true,
"img2img/Restore faces/value": false,
"img2img/Tiling/visible": true,
"img2img/Tiling/value": false,
"img2img/Tabs@img2img_controlnet_tabs/selected": null,
"img2img/Input Directory/visible": true,
"img2img/Input Directory/value": "",
"img2img/New Canvas Width/visible": true,
"img2img/New Canvas Width/value": 512,
"img2img/New Canvas Width/minimum": 256,
"img2img/New Canvas Width/maximum": 1024,
"img2img/New Canvas Width/step": 64,
"img2img/New Canvas Height/visible": true,
"img2img/New Canvas Height/value": 512,
"img2img/New Canvas Height/minimum": 256,
"img2img/New Canvas Height/maximum": 1024,
"img2img/New Canvas Height/step": 64,
"img2img/Create New Canvas/visible": true,
"img2img/Enable/visible": true,
"img2img/Enable/value": false,
"img2img/Low VRAM/visible": true,
"img2img/Low VRAM/value": false,
"img2img/Pixel Perfect/visible": true,
"img2img/Pixel Perfect/value": false,
"img2img/Allow Preview/value": false,
"img2img/Preview as Input/value": false,
"img2img/Upload independent control image/visible": true,
"img2img/Upload independent control image/value": false,
"img2img/Control Type/visible": true,
"img2img/Control Type/value": "All",
"img2img/Preprocessor/visible": true,
"img2img/Preprocessor/value": "none",
"img2img/Model/visible": true,
"img2img/Model/value": "None",
"img2img/Control Weight/visible": true,
"img2img/Control Weight/value": 1.0,
"img2img/Control Weight/minimum": 0.0,
"img2img/Control Weight/maximum": 2.0,
"img2img/Control Weight/step": 0.05,
"img2img/Starting Control Step/visible": true,
"img2img/Starting Control Step/value": 0.0,
"img2img/Starting Control Step/minimum": 0.0,
"img2img/Starting Control Step/maximum": 1.0,
"img2img/Starting Control Step/step": 0.01,
"img2img/Ending Control Step/visible": true,
"img2img/Ending Control Step/value": 1.0,
"img2img/Ending Control Step/minimum": 0.0,
"img2img/Ending Control Step/maximum": 1.0,
"img2img/Ending Control Step/step": 0.01,
"img2img/Preprocessor resolution/value": -1,
"img2img/Preprocessor resolution/minimum": 64,
"img2img/Preprocessor resolution/maximum": 2048,
"img2img/Preprocessor resolution/step": 10,
"img2img/Threshold A/value": -1,
"img2img/Threshold A/minimum": 64,
"img2img/Threshold A/maximum": 1024,
"img2img/Threshold A/step": 1,
"img2img/Threshold B/value": -1,
"img2img/Threshold B/minimum": 64,
"img2img/Threshold B/maximum": 1024,
"img2img/Threshold B/step": 1,
"img2img/Control Mode/visible": true,
"img2img/Control Mode/value": "Balanced",
"img2img/Resize Mode/value": "Crop and Resize",
"img2img/[Loopback] Automatically send generated images to this ControlNet unit/value": false,
"img2img/Presets/visible": true,
"img2img/Presets/value": "New Preset",
"img2img/Preset name/visible": true,
"img2img/Preset name/value": "",
"customscript/lora_block_weight.py/img2img/Active/visible": true,
"customscript/lora_block_weight.py/img2img/Active/value": true,
"customscript/lora_block_weight.py/img2img/Debug/visible": true,
"customscript/lora_block_weight.py/img2img/Debug/value": false,
"customscript/lora_block_weight.py/img2img/diff image color/visible": true,
"customscript/lora_block_weight.py/img2img/diff image color/value": "black",
"customscript/lora_block_weight.py/img2img/change X-Y/visible": true,
"customscript/lora_block_weight.py/img2img/change X-Y/value": false,
"customscript/lora_block_weight.py/img2img/difference threshold/visible": true,
"customscript/lora_block_weight.py/img2img/difference threshold/value": "20",
"customscript/lora_block_weight.py/img2img/X Types/visible": true,
"customscript/lora_block_weight.py/img2img/X Types/value": "values",
"customscript/lora_block_weight.py/img2img/X Values/visible": true,
"customscript/lora_block_weight.py/img2img/X Values/value": "0,0.25,0.5,0.75,1",
"customscript/lora_block_weight.py/img2img/Y Types/visible": true,
"customscript/lora_block_weight.py/img2img/Y Types/value": "Block ID",
"customscript/lora_block_weight.py/img2img/Y Values/visible": true,
"customscript/lora_block_weight.py/img2img/Y Values/value": "IN05-OUT05",
"customscript/lora_block_weight.py/img2img/Z type/visible": true,
"customscript/lora_block_weight.py/img2img/Z type/value": "none",
"customscript/lora_block_weight.py/img2img/Z values/visible": true,
"customscript/lora_block_weight.py/img2img/Z values/value": "",
"customscript/lora_block_weight.py/img2img/Range/value": "0.5,1",
"customscript/lora_block_weight.py/img2img/Blocks (12ALL,17ALL,20ALL,26ALL also can be used)/value": "BASE,IN00,IN01,IN02,IN03,IN04,IN05,IN06,IN07,IN08,IN09,IN10,IN11,M00,OUT00,OUT01,OUT02,OUT03,OUT04,OUT05,OUT06,OUT07,OUT08,OUT09,OUT10,OUT11",
"customscript/lora_block_weight.py/img2img/number of seed/visible": true,
"customscript/lora_block_weight.py/img2img/number of seed/value": 1.0,
"img2img/Reload Presets/visible": true,
"img2img/Reload Tags/visible": true,
"img2img/Save Presets/visible": true,
"img2img/Open TextEditor/visible": true,
"customscript/lora_block_weight.py/img2img/print change/visible": true,
"customscript/lora_block_weight.py/img2img/print change/value": false,
"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/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,
"img2img/Swap X/Y axes/visible": true,
"img2img/Swap Y/Z axes/visible": true,
"img2img/Swap X/Z axes/visible": true,
"customscript/movie2movie.py/img2img/Duration/visible": true,
"customscript/movie2movie.py/img2img/Duration/value": 50.0,
"customscript/movie2movie.py/img2img/Duration/minimum": 10.0,
"customscript/movie2movie.py/img2img/Duration/maximum": 200.0,
"customscript/movie2movie.py/img2img/Duration/step": 10,
"customscript/movie2movie.py/img2img/Save preprocessed/visible": true,
"customscript/movie2movie.py/img2img/Save preprocessed/value": false,
"customscript/ultimate-upscale.py/img2img/Target size type/visible": true,
"customscript/ultimate-upscale.py/img2img/Target size type/value": "From img2img2 settings",
"customscript/ultimate-upscale.py/img2img/Custom width/value": 2048,
"customscript/ultimate-upscale.py/img2img/Custom width/minimum": 64,
"customscript/ultimate-upscale.py/img2img/Custom width/maximum": 8192,
"customscript/ultimate-upscale.py/img2img/Custom width/step": 64,
"customscript/ultimate-upscale.py/img2img/Custom height/value": 2048,
"customscript/ultimate-upscale.py/img2img/Custom height/minimum": 64,
"customscript/ultimate-upscale.py/img2img/Custom height/maximum": 8192,
"customscript/ultimate-upscale.py/img2img/Custom height/step": 64,
"customscript/ultimate-upscale.py/img2img/Scale/value": 2,
"customscript/ultimate-upscale.py/img2img/Scale/minimum": 1,
"customscript/ultimate-upscale.py/img2img/Scale/maximum": 16,
"customscript/ultimate-upscale.py/img2img/Scale/step": 0.01,
"customscript/ultimate-upscale.py/img2img/Upscaler/visible": true,
"customscript/ultimate-upscale.py/img2img/Upscaler/value": "None",
"customscript/ultimate-upscale.py/img2img/Type/visible": true,
"customscript/ultimate-upscale.py/img2img/Type/value": "Linear",
"customscript/ultimate-upscale.py/img2img/Tile width/visible": true,
"customscript/ultimate-upscale.py/img2img/Tile width/value": 512,
"customscript/ultimate-upscale.py/img2img/Tile width/minimum": 0,
"customscript/ultimate-upscale.py/img2img/Tile width/maximum": 2048,
"customscript/ultimate-upscale.py/img2img/Tile width/step": 64,
"customscript/ultimate-upscale.py/img2img/Tile height/visible": true,
"customscript/ultimate-upscale.py/img2img/Tile height/value": 0,
"customscript/ultimate-upscale.py/img2img/Tile height/minimum": 0,
"customscript/ultimate-upscale.py/img2img/Tile height/maximum": 2048,
"customscript/ultimate-upscale.py/img2img/Tile height/step": 64,
"customscript/ultimate-upscale.py/img2img/Mask blur/visible": true,
"customscript/ultimate-upscale.py/img2img/Mask blur/value": 8,
"customscript/ultimate-upscale.py/img2img/Mask blur/minimum": 0,
"customscript/ultimate-upscale.py/img2img/Mask blur/maximum": 64,
"customscript/ultimate-upscale.py/img2img/Mask blur/step": 1,
"customscript/ultimate-upscale.py/img2img/Padding/visible": true,
"customscript/ultimate-upscale.py/img2img/Padding/value": 32,
"customscript/ultimate-upscale.py/img2img/Padding/minimum": 0,
"customscript/ultimate-upscale.py/img2img/Padding/maximum": 512,
"customscript/ultimate-upscale.py/img2img/Padding/step": 1,
"customscript/ultimate-upscale.py/img2img/Denoise/value": 0.35,
"customscript/ultimate-upscale.py/img2img/Denoise/minimum": 0,
"customscript/ultimate-upscale.py/img2img/Denoise/maximum": 1,
"customscript/ultimate-upscale.py/img2img/Denoise/step": 0.01,
"customscript/ultimate-upscale.py/img2img/Width/value": 64,
"customscript/ultimate-upscale.py/img2img/Width/minimum": 0,
"customscript/ultimate-upscale.py/img2img/Width/maximum": 128,
"customscript/ultimate-upscale.py/img2img/Width/step": 1,
"customscript/ultimate-upscale.py/img2img/Upscaled/visible": true,
"customscript/ultimate-upscale.py/img2img/Upscaled/value": true,
"customscript/ultimate-upscale.py/img2img/Seams fix/visible": true,
"customscript/ultimate-upscale.py/img2img/Seams fix/value": false,
"extras/\ud83d\udcc2/visible": true,
"extras/Save/visible": true,
"extras/Zip/visible": true,
"extras/Send to img2img/visible": true,
"extras/Send to inpaint/visible": true,
"extras/Send to extras/visible": true,
"extras/Upscale/visible": 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,
"extras/\u2b80/visible": true,
"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,
"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,
"customscript/postprocessing_gfpgan.py/extras/GFPGAN visibility/visible": true,
"customscript/postprocessing_gfpgan.py/extras/GFPGAN visibility/value": 0,
"customscript/postprocessing_gfpgan.py/extras/GFPGAN visibility/minimum": 0.0,
"customscript/postprocessing_gfpgan.py/extras/GFPGAN visibility/maximum": 1.0,
"customscript/postprocessing_gfpgan.py/extras/GFPGAN visibility/step": 0.001,
"customscript/postprocessing_codeformer.py/extras/CodeFormer visibility/visible": true,
"customscript/postprocessing_codeformer.py/extras/CodeFormer visibility/value": 0,
"customscript/postprocessing_codeformer.py/extras/CodeFormer visibility/minimum": 0.0,
"customscript/postprocessing_codeformer.py/extras/CodeFormer visibility/maximum": 1.0,
"customscript/postprocessing_codeformer.py/extras/CodeFormer visibility/step": 0.001,
"customscript/postprocessing_codeformer.py/extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/visible": true,
"customscript/postprocessing_codeformer.py/extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/value": 0,
"customscript/postprocessing_codeformer.py/extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/minimum": 0.0,
"customscript/postprocessing_codeformer.py/extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/maximum": 1.0,
"customscript/postprocessing_codeformer.py/extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/step": 0.001,
"pnginfo/Send to txt2img/visible": true,
"pnginfo/Send to img2img/visible": true,
"pnginfo/Send to inpaint/visible": true,
"pnginfo/Send to tagger\u56fe\u751f\u6587/visible": true,
"modelmerger/Merge/visible": true,
"modelmerger/Primary model (A)/visible": true,
"modelmerger/Primary model (A)/value": null,
"modelmerger/\ud83d\udd04/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": "ckpt",
"modelmerger/Save as float16/visible": true,
"modelmerger/Save as float16/value": false,
"modelmerger/Save metadata (.safetensors only)/visible": true,
"modelmerger/Save metadata (.safetensors only)/value": true,
"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": "",
"train/Tabs@train_tabs_2img_settings/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/Source directory/visible": true,
"train/Source directory/value": "",
"train/Destination directory/visible": true,
"train/Destination directory/value": "",
"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/Existing Caption txt Action/visible": true,
"train/Existing Caption txt Action/value": "ignore",
"train/Keep original size/visible": true,
"train/Keep original size/value": false,
"train/Create flipped copies/visible": true,
"train/Create flipped copies/value": false,
"train/Split oversized images/visible": true,
"train/Split oversized images/value": false,
"train/Auto focal point crop/visible": true,
"train/Auto focal point crop/value": false,
"train/Auto-sized crop/visible": true,
"train/Auto-sized crop/value": false,
"train/Use BLIP for caption/visible": true,
"train/Use BLIP for caption/value": false,
"train/Use deepbooru for caption/visible": true,
"train/Use deepbooru for caption/value": false,
"train/Split image threshold/visible": true,
"train/Split image threshold/value": 0.5,
"train/Split image threshold/minimum": 0.0,
"train/Split image threshold/maximum": 1.0,
"train/Split image threshold/step": 0.05,
"train/Split image overlap ratio/visible": true,
"train/Split image overlap ratio/value": 0.2,
"train/Split image overlap ratio/minimum": 0.0,
"train/Split image overlap ratio/maximum": 0.9,
"train/Split image overlap ratio/step": 0.05,
"train/Focal point face weight/visible": true,
"train/Focal point face weight/value": 0.9,
"train/Focal point face weight/minimum": 0.0,
"train/Focal point face weight/maximum": 1.0,
"train/Focal point face weight/step": 0.05,
"train/Focal point entropy weight/visible": true,
"train/Focal point entropy weight/value": 0.15,
"train/Focal point entropy weight/minimum": 0.0,
"train/Focal point entropy weight/maximum": 1.0,
"train/Focal point entropy weight/step": 0.05,
"train/Focal point edges weight/visible": true,
"train/Focal point edges weight/value": 0.5,
"train/Focal point edges weight/minimum": 0.0,
"train/Focal point edges weight/maximum": 1.0,
"train/Focal point edges weight/step": 0.05,
"train/Create debug image/visible": true,
"train/Create debug image/value": false,
"train/Dimension lower bound/visible": true,
"train/Dimension lower bound/value": 384,
"train/Dimension lower bound/minimum": 64,
"train/Dimension lower bound/maximum": 2048,
"train/Dimension lower bound/step": 8,
"train/Dimension upper bound/visible": true,
"train/Dimension upper bound/value": 768,
"train/Dimension upper bound/minimum": 64,
"train/Dimension upper bound/maximum": 2048,
"train/Dimension upper bound/step": 8,
"train/Area lower bound/visible": true,
"train/Area lower bound/value": 4096,
"train/Area lower bound/minimum": 4096,
"train/Area lower bound/maximum": 4194304,
"train/Area lower bound/step": 1,
"train/Area upper bound/visible": true,
"train/Area upper bound/value": 409600,
"train/Area upper bound/minimum": 4096,
"train/Area upper bound/maximum": 4194304,
"train/Area upper bound/step": 1,
"train/Resizing objective/visible": true,
"train/Resizing objective/value": "Maximize area",
"train/Error threshold/visible": true,
"train/Error threshold/value": 0.1,
"train/Error threshold/minimum": 0,
"train/Error threshold/maximum": 1,
"train/Error threshold/step": 0.01,
"train/Interrupt/visible": true,
"train/Preprocess/visible": true,
"train/Embedding/visible": true,
"train/Embedding/value": null,
"train/\ud83d\udd04/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/Value/visible": true,
"train/Value/value": "0.1",
"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/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/Train Hypernetwork/visible": true,
"threedopenpose/Tabs@openpose3d_main/selected": null,
"threedopenpose/Send to txt2img/visible": true,
"threedopenpose/Send to img2img/visible": true,
"threedopenpose/Control Model number/visible": true,
"threedopenpose/Control Model number/value": "0",
"threedopenpose/Download/visible": true,
"openpose_editor/width/visible": true,
"openpose_editor/width/value": 512,
"openpose_editor/width/minimum": 64,
"openpose_editor/width/maximum": 2048,
"openpose_editor/width/step": 64,
"openpose_editor/height/visible": true,
"openpose_editor/height/value": 512,
"openpose_editor/height/minimum": 64,
"openpose_editor/height/maximum": 2048,
"openpose_editor/height/step": 64,
"openpose_editor/Add/visible": true,
"openpose_editor/Reset/visible": true,
"openpose_editor/Presets/visible": true,
"openpose_editor/Presets/value": null,
"openpose_editor/Load Preset/visible": true,
"openpose_editor/Save Preset/visible": true,
"openpose_editor/json/value": "",
"openpose_editor/Save JSON/visible": true,
"openpose_editor/Save PNG/visible": true,
"openpose_editor/Send to txt2img/visible": true,
"openpose_editor/Send to img2img/visible": true,
"openpose_editor/Send to/visible": true,
"openpose_editor/Send to/value": "0",
"tagger/Input directory/visible": true,
"tagger/Input directory/value": "",
"tagger/Use recursive with glob pattern/visible": true,
"tagger/Use recursive with glob pattern/value": false,
"tagger/Output directory/visible": true,
"tagger/Output directory/value": "",
"tagger/Output filename format/visible": true,
"tagger/Output filename format/value": "[name].[output_extension]",
"tagger/Action on existing caption/visible": true,
"tagger/Action on existing caption/value": "ignore",
"tagger/Remove duplicated tag/visible": true,
"tagger/Remove duplicated tag/value": false,
"tagger/Save with JSON/visible": true,
"tagger/Save with JSON/value": false,
"tagger/Interrogate/visible": true,
"tagger/Preset/visible": true,
"tagger/Preset/value": "default.json",
"tagger/\ud83d\udcbe/visible": true,
"tagger/\ud83d\udd04/visible": true,
"tagger/Interrogator/visible": true,
"tagger/Interrogator/value": "wd14-vit-v2-git",
"tagger/Unload all interrogate models/visible": true,
"tagger/Threshold/visible": true,
"tagger/Threshold/value": 0.35,
"tagger/Threshold/minimum": 0,
"tagger/Threshold/maximum": 1,
"tagger/Threshold/step": 0.01,
"tagger/Additional tags (split by comma)/visible": true,
"tagger/Additional tags (split by comma)/value": "",
"tagger/Exclude tags (split by comma)/visible": true,
"tagger/Exclude tags (split by comma)/value": "",
"tagger/Sort by alphabetical order/visible": true,
"tagger/Sort by alphabetical order/value": false,
"tagger/Include confident of tags matches in results/visible": true,
"tagger/Include confident of tags matches in results/value": false,
"tagger/Use spaces instead of underscore/visible": true,
"tagger/Use spaces instead of underscore/value": true,
"tagger/Excudes (split by comma)/visible": true,
"tagger/Excudes (split by comma)/value": "0_0, (o)_(o), +_+, +_-, ._., <o>_<o>, <|>_<|>, =_=, >_<, 3_3, 6_9, >_o, @_@, ^_^, o_o, u_u, x_x, |_|, ||_||",
"tagger/Escape brackets/visible": true,
"tagger/Escape brackets/value": false,
"tagger/Unload model after running/visible": true,
"tagger/Unload model after running/value": false,
"tagger/Tags/visible": true,
"tagger/Tags/value": "",
"tagger/Send to txt2img/visible": true,
"tagger/Send to img2img/visible": true,
"ui_theme/Themes/visible": true,
"ui_theme/Themes/value": null,
"ui_theme/Save / Save as/visible": true,
"ui_theme/Save / Save as/value": "",
"ui_theme/Reset/visible": true,
"ui_theme/Save/visible": true,
"ui_theme/Vars/visible": true,
"ui_theme/Vars/value": "",
"ui_theme/Css/visible": true,
"ui_theme/Css/value": "",
"ui_theme/Hue/visible": true,
"ui_theme/Hue/value": 0,
"ui_theme/Hue/minimum": 0,
"ui_theme/Hue/maximum": 360,
"ui_theme/Hue/step": 1,
"ui_theme/Saturation/visible": true,
"ui_theme/Saturation/value": 0,
"ui_theme/Saturation/minimum": -100,
"ui_theme/Saturation/maximum": 100,
"ui_theme/Saturation/step": 1,
"ui_theme/Lightness/visible": true,
"ui_theme/Lightness/value": 0,
"ui_theme/Lightness/minimum": -50,
"ui_theme/Lightness/maximum": 50,
"ui_theme/Lightness/step": 1,
"ui_theme/Invert/visible": true,
"ui_theme/Gap size/visible": true,
"ui_theme/Gap size/value": 1,
"ui_theme/Gap size/minimum": 1,
"ui_theme/Gap size/maximum": 16,
"ui_theme/Gap size/step": 1,
"ui_theme/Padding size/visible": true,
"ui_theme/Padding size/value": 1,
"ui_theme/Padding size/minimum": 1,
"ui_theme/Padding size/maximum": 16,
"ui_theme/Padding size/step": 1,
"ui_theme/Mobile Gap size/visible": true,
"ui_theme/Mobile Gap size/value": 1,
"ui_theme/Mobile Gap size/minimum": 1,
"ui_theme/Mobile Gap size/maximum": 16,
"ui_theme/Mobile Gap size/step": 1,
"ui_theme/Mobile Padding size/visible": true,
"ui_theme/Mobile Padding size/value": 1,
"ui_theme/Mobile Padding size/minimum": 1,
"ui_theme/Mobile Padding size/maximum": 16,
"ui_theme/Mobile Padding size/step": 1,
"ui_theme/Border radius/visible": true,
"ui_theme/Border radius/value": 0,
"ui_theme/Border radius/minimum": 0,
"ui_theme/Border radius/maximum": 16,
"ui_theme/Border radius/step": 1,
"settings/Apply settings/visible": true,
"settings/Reload UI/visible": true,
"settings/Tabs@settings/selected": null,
"settings/Always save all generated images/visible": true,
"settings/Always save all generated images/value": true,
"settings//visible": true,
"settings//value": false,
"settings/File format for images/visible": true,
"settings/File format for images/value": "png",
"settings/Images filename pattern/visible": true,
"settings/Images filename pattern/value": "[model_name]_[seed]",
"settings/Add number to filename when saving/visible": true,
"settings/Add number to filename when saving/value": true,
"settings/Always save all generated image grids/visible": true,
"settings/Always save all generated image grids/value": true,
"settings/File format for grids/visible": true,
"settings/File format for grids/value": "png",
"settings/Add extended info (seed, prompt) to filename when saving grid/visible": true,
"settings/Add extended info (seed, prompt) to filename when saving grid/value": false,
"settings/Do not save grids consisting of one picture/visible": true,
"settings/Do not save grids consisting of one picture/value": true,
"settings/Prevent empty spots in grid (when set to autodetect)/visible": true,
"settings/Prevent empty spots in grid (when set to autodetect)/value": true,
"settings/Archive filename pattern/visible": true,
"settings/Archive filename pattern/value": "",
"settings/Grid row count; use -1 for autodetect and 0 for it to be same as batch size/visible": true,
"settings/Grid row count; use -1 for autodetect and 0 for it to be same as batch size/value": -1,
"settings/Grid row count; use -1 for autodetect and 0 for it to be same as batch size/minimum": -1,
"settings/Grid row count; use -1 for autodetect and 0 for it to be same as batch size/maximum": 16,
"settings/Grid row count; use -1 for autodetect and 0 for it to be same as batch size/step": 1,
"settings/Font for image grids that have text/visible": true,
"settings/Font for image grids that have text/value": "JetBrainsMono-Regular.woff2",
"settings/Save text information about generation parameters as chunks to png files/visible": true,
"settings/Save text information about generation parameters as chunks to png files/value": true,
"settings/Create a text file next to every image with generation parameters./visible": true,
"settings/Create a text file next to every image with generation parameters./value": false,
"settings/Save a copy of image before doing face restoration./visible": true,
"settings/Save a copy of image before doing face restoration./value": false,
"settings/Save a copy of image before applying highres fix./visible": true,
"settings/Save a copy of image before applying highres fix./value": false,
"settings/Save a copy of image before applying color correction to img2img results/visible": true,
"settings/Save a copy of image before applying color correction to img2img results/value": false,
"settings/For inpainting, save a copy of the greyscale mask/visible": true,
"settings/For inpainting, save a copy of the greyscale mask/value": false,
"settings/For inpainting, save a masked composite/visible": true,
"settings/For inpainting, save a masked composite/value": false,
"settings/Quality for saved jpeg images/visible": true,
"settings/Quality for saved jpeg images/value": 99,
"settings/Quality for saved jpeg images/minimum": 1,
"settings/Quality for saved jpeg images/maximum": 100,
"settings/Quality for saved jpeg images/step": 1,
"settings/Use lossless compression for webp images/visible": true,
"settings/Use lossless compression for webp images/value": false,
"settings/Save copy of large images as JPG/visible": true,
"settings/Save copy of large images as JPG/value": false,
"settings/File size limit for the above option, MB/visible": true,
"settings/File size limit for the above option, MB/value": 4.0,
"settings/Width/height limit for the above option, in pixels/visible": true,
"settings/Width/height limit for the above option, in pixels/value": 4000.0,
"settings/Maximum image size/visible": true,
"settings/Maximum image size/value": 200.0,
"settings/Use original name for output filename during batch process in extras tab/visible": true,
"settings/Use original name for output filename during batch process in extras tab/value": false,
"settings/Use upscaler name as filename suffix in the extras tab/visible": true,
"settings/Use upscaler name as filename suffix in the extras tab/value": false,
"settings/When using 'Save' button, only save a single selected image/visible": true,
"settings/When using 'Save' button, only save a single selected image/value": true,
"settings/Save init images when using img2img/visible": true,
"settings/Save init images when using img2img/value": false,
"settings/Directory for temporary images; leave empty for default/visible": true,
"settings/Directory for temporary images; leave empty for default/value": "",
"settings/Cleanup non-default temporary directory when starting webui/visible": true,
"settings/Cleanup non-default temporary directory when starting webui/value": false,
"settings/Output directory for images; if empty, defaults to three directories below/visible": true,
"settings/Output directory for images; if empty, defaults to three directories below/value": "",
"settings/Output directory for txt2img images/visible": true,
"settings/Output directory for txt2img images/value": "/content/gdrive/MyDrive/WebUI/outputs/txt2img-images",
"settings/Output directory for img2img images/visible": true,
"settings/Output directory for img2img images/value": "/content/gdrive/MyDrive/WebUI/outputs/img2img-images",
"settings/Output directory for images from extras tab/visible": true,
"settings/Output directory for images from extras tab/value": "/content/gdrive/MyDrive/WebUI/outputs/extras-images",
"settings/Output directory for grids; if empty, defaults to two directories below/visible": true,
"settings/Output directory for grids; if empty, defaults to two directories below/value": "",
"settings/Output directory for txt2img grids/visible": true,
"settings/Output directory for txt2img grids/value": "/content/gdrive/MyDrive/WebUI/outputs/txt2img-grids",
"settings/Output directory for img2img grids/visible": true,
"settings/Output directory for img2img grids/value": "/content/gdrive/MyDrive/WebUI/outputs/img2img-grids",
"settings/Directory for saving images using the Save button/visible": true,
"settings/Directory for saving images using the Save button/value": "/content/gdrive/MyDrive/WebUI/outputs/log/images",
"settings/Directory for saving init images when using img2img/visible": true,
"settings/Directory for saving init images when using img2img/value": "outputs/init-images",
"settings/Save images to a subdirectory/visible": true,
"settings/Save images to a subdirectory/value": false,
"settings/Save grids to a subdirectory/visible": true,
"settings/Save grids to a subdirectory/value": false,
"settings/When using \"Save\" button, save images to a subdirectory/visible": true,
"settings/When using \"Save\" button, save images to a subdirectory/value": false,
"settings/Directory name pattern/visible": true,
"settings/Directory name pattern/value": "",
"settings/Max prompt words for [prompt_words] pattern/visible": true,
"settings/Max prompt words for [prompt_words] pattern/value": 8,
"settings/Max prompt words for [prompt_words] pattern/minimum": 1,
"settings/Max prompt words for [prompt_words] pattern/maximum": 20,
"settings/Max prompt words for [prompt_words] pattern/step": 1,
"settings/Tile size for ESRGAN upscalers./visible": true,
"settings/Tile size for ESRGAN upscalers./value": 192,
"settings/Tile size for ESRGAN upscalers./minimum": 0,
"settings/Tile size for ESRGAN upscalers./maximum": 512,
"settings/Tile size for ESRGAN upscalers./step": 16,
"settings/Tile overlap for ESRGAN upscalers./visible": true,
"settings/Tile overlap for ESRGAN upscalers./value": 8,
"settings/Tile overlap for ESRGAN upscalers./minimum": 0,
"settings/Tile overlap for ESRGAN upscalers./maximum": 48,
"settings/Tile overlap for ESRGAN upscalers./step": 1,
"settings/Upscaler for img2img/visible": true,
"settings/Upscaler for img2img/value": "R-ESRGAN 4x+ Anime6B",
"settings/LDSR processing steps. Lower = faster/visible": true,
"settings/LDSR processing steps. Lower = faster/value": 100,
"settings/LDSR processing steps. Lower = faster/minimum": 1,
"settings/LDSR processing steps. Lower = faster/maximum": 200,
"settings/LDSR processing steps. Lower = faster/step": 1,
"settings/Cache LDSR model in memory/visible": true,
"settings/Cache LDSR model in memory/value": false,
"settings/Tile size for SCUNET upscalers./visible": true,
"settings/Tile size for SCUNET upscalers./value": 256,
"settings/Tile size for SCUNET upscalers./minimum": 0,
"settings/Tile size for SCUNET upscalers./maximum": 512,
"settings/Tile size for SCUNET upscalers./step": 16,
"settings/Tile overlap for SCUNET upscalers./visible": true,
"settings/Tile overlap for SCUNET upscalers./value": 8,
"settings/Tile overlap for SCUNET upscalers./minimum": 0,
"settings/Tile overlap for SCUNET upscalers./maximum": 64,
"settings/Tile overlap for SCUNET upscalers./step": 1,
"settings/Tile size for all SwinIR./visible": true,
"settings/Tile size for all SwinIR./value": 192,
"settings/Tile size for all SwinIR./minimum": 16,
"settings/Tile size for all SwinIR./maximum": 512,
"settings/Tile size for all SwinIR./step": 16,
"settings/Tile overlap, in pixels for SwinIR. Low values = visible seam./visible": true,
"settings/Tile overlap, in pixels for SwinIR. Low values = visible seam./value": 8,
"settings/Tile overlap, in pixels for SwinIR. Low values = visible seam./minimum": 0,
"settings/Tile overlap, in pixels for SwinIR. Low values = visible seam./maximum": 48,
"settings/Tile overlap, in pixels for SwinIR. Low values = visible seam./step": 1,
"settings/Use torch.compile to accelerate SwinIR./visible": true,
"settings/Use torch.compile to accelerate SwinIR./value": false,
"settings/Face restoration model/visible": true,
"settings/Face restoration model/value": null,
"settings/CodeFormer weight/visible": true,
"settings/CodeFormer weight/value": 0.5,
"settings/CodeFormer weight/minimum": 0,
"settings/CodeFormer weight/maximum": 1,
"settings/CodeFormer weight/step": 0.01,
"settings/Move face restoration model from VRAM into RAM after processing/visible": true,
"settings/Move face restoration model from VRAM into RAM after processing/value": false,
"settings/Show warnings in console./visible": true,
"settings/Show warnings in console./value": false,
"settings/VRAM usage polls per second during generation./visible": true,
"settings/VRAM usage polls per second during generation./value": 1,
"settings/VRAM usage polls per second during generation./minimum": 0,
"settings/VRAM usage polls per second during generation./maximum": 40,
"settings/VRAM usage polls per second during generation./step": 1,
"settings/Always print all generation info to standard output/visible": true,
"settings/Always print all generation info to standard output/value": false,
"settings/Add a second progress bar to the console that shows progress for an entire job./visible": true,
"settings/Add a second progress bar to the console that shows progress for an entire job./value": true,
"settings/Print extra hypernetwork information to console./visible": true,
"settings/Print extra hypernetwork information to console./value": false,
"settings/Load models/files in hidden directories/visible": true,
"settings/Load models/files in hidden directories/value": true,
"settings/Disable memmapping for loading .safetensors files./visible": true,
"settings/Disable memmapping for loading .safetensors files./value": false,
"settings/Move VAE and CLIP to RAM when training if possible. Saves VRAM./visible": true,
"settings/Move VAE and CLIP to RAM when training if possible. Saves VRAM./value": false,
"settings/Turn on pin_memory for DataLoader. Makes training slightly faster but can increase memory usage./visible": true,
"settings/Turn on pin_memory for DataLoader. Makes training slightly faster but can increase memory usage./value": false,
"settings/Saves Optimizer state as separate *.optim file. Training of embedding or HN can be resumed with the matching optim file./visible": true,
"settings/Saves Optimizer state as separate *.optim file. Training of embedding or HN can be resumed with the matching optim file./value": false,
"settings/Save textual inversion and hypernet settings to a text file whenever training starts./visible": true,
"settings/Save textual inversion and hypernet settings to a text file whenever training starts./value": true,
"settings/Filename word regex/visible": true,
"settings/Filename word regex/value": "",
"settings/Filename join string/visible": true,
"settings/Filename join string/value": " ",
"settings/Number of repeats for a single input image per epoch; used only for displaying epoch number/visible": true,
"settings/Number of repeats for a single input image per epoch; used only for displaying epoch number/value": 1,
"settings/Save an csv containing the loss to log directory every N steps, 0 to disable/visible": true,
"settings/Save an csv containing the loss to log directory every N steps, 0 to disable/value": 500.0,
"settings/Use cross attention optimizations while training/visible": true,
"settings/Use cross attention optimizations while training/value": false,
"settings/Enable tensorboard logging./visible": true,
"settings/Enable tensorboard logging./value": false,
"settings/Save generated images within tensorboard./visible": true,
"settings/Save generated images within tensorboard./value": false,
"settings/How often, in seconds, to flush the pending tensorboard events and summaries to disk./visible": true,
"settings/How often, in seconds, to flush the pending tensorboard events and summaries to disk./value": 120.0,
"settings/Checkpoints to cache in RAM/visible": true,
"settings/Checkpoints to cache in RAM/value": 0,
"settings/Checkpoints to cache in RAM/minimum": 0,
"settings/Checkpoints to cache in RAM/maximum": 10,
"settings/Checkpoints to cache in RAM/step": 1,
"settings/VAE Checkpoints to cache in RAM/visible": true,
"settings/VAE Checkpoints to cache in RAM/value": 0,
"settings/VAE Checkpoints to cache in RAM/minimum": 0,
"settings/VAE Checkpoints to cache in RAM/maximum": 10,
"settings/VAE Checkpoints to cache in RAM/step": 1,
"settings/Ignore selected VAE for stable diffusion checkpoints that have their own .vae.pt next to them/visible": true,
"settings/Ignore selected VAE for stable diffusion checkpoints that have their own .vae.pt next to them/value": true,
"settings/SD Unet/visible": true,
"settings/SD Unet/value": "Automatic",
"settings/\ud83d\udd04/visible": true,
"settings/Inpainting conditioning mask strength/visible": true,
"settings/Inpainting conditioning mask strength/value": 1,
"settings/Inpainting conditioning mask strength/minimum": 0.0,
"settings/Inpainting conditioning mask strength/maximum": 1.0,
"settings/Inpainting conditioning mask strength/step": 0.01,
"settings/Noise multiplier for img2img/visible": true,
"settings/Noise multiplier for img2img/value": 1,
"settings/Noise multiplier for img2img/minimum": 0.5,
"settings/Noise multiplier for img2img/maximum": 1.5,
"settings/Noise multiplier for img2img/step": 0.01,
"settings/Apply color correction to img2img results to match original colors./visible": true,
"settings/Apply color correction to img2img results to match original colors./value": false,
"settings/With img2img, do exactly the amount of steps the slider specifies./visible": true,
"settings/With img2img, do exactly the amount of steps the slider specifies./value": false,
"settings/Enable quantization in K samplers for sharper and cleaner results. This may change existing seeds. Requires restart to apply./visible": true,
"settings/Enable quantization in K samplers for sharper and cleaner results. This may change existing seeds. Requires restart to apply./value": false,
"settings/Enable emphasis/visible": true,
"settings/Enable emphasis/value": true,
"settings/Make K-diffusion samplers produce same images in a batch as when making a single image/visible": true,
"settings/Make K-diffusion samplers produce same images in a batch as when making a single image/value": true,
"settings/Prompt word wrap length limit/visible": true,
"settings/Prompt word wrap length limit/value": 20,
"settings/Prompt word wrap length limit/minimum": 0,
"settings/Prompt word wrap length limit/maximum": 74,
"settings/Prompt word wrap length limit/step": 1,
"settings/Upcast cross attention layer to float32/visible": true,
"settings/Upcast cross attention layer to float32/value": false,
"settings/Max resolution output for txt2img and img2img/visible": true,
"settings/Max resolution output for txt2img and img2img/value": 2048.0,
"settings/Automaticlly revert VAE to 32-bit floats/visible": true,
"settings/Automaticlly revert VAE to 32-bit floats/value": true,
"settings/Random number generator source./visible": true,
"settings/Random number generator source./value": "GPU",
"settings/crop top coordinate/visible": true,
"settings/crop top coordinate/value": 0.0,
"settings/crop left coordinate/visible": true,
"settings/crop left coordinate/value": 0.0,
"settings/SDXL low aesthetic score/visible": true,
"settings/SDXL low aesthetic score/value": 2.5,
"settings/SDXL high aesthetic score/visible": true,
"settings/SDXL high aesthetic score/value": 6.0,
"settings/Cross attention optimization/visible": true,
"settings/Cross attention optimization/value": "sdp - scaled dot product",
"settings/Negative Guidance minimum sigma/visible": true,
"settings/Negative Guidance minimum sigma/value": 0,
"settings/Negative Guidance minimum sigma/minimum": 0.0,
"settings/Negative Guidance minimum sigma/maximum": 15.0,
"settings/Negative Guidance minimum sigma/step": 0.01,
"settings/Token merging ratio/visible": true,
"settings/Token merging ratio/value": 0,
"settings/Token merging ratio/minimum": 0.0,
"settings/Token merging ratio/maximum": 0.9,
"settings/Token merging ratio/step": 0.1,
"settings/Token merging ratio for img2img/visible": true,
"settings/Token merging ratio for img2img/value": 0,
"settings/Token merging ratio for img2img/minimum": 0.0,
"settings/Token merging ratio for img2img/maximum": 0.9,
"settings/Token merging ratio for img2img/step": 0.1,
"settings/Token merging ratio for high-res pass/visible": true,
"settings/Token merging ratio for high-res pass/value": 0,
"settings/Token merging ratio for high-res pass/minimum": 0.0,
"settings/Token merging ratio for high-res pass/maximum": 0.9,
"settings/Token merging ratio for high-res pass/step": 0.1,
"settings/Pad prompt/negative prompt to be same length/visible": true,
"settings/Pad prompt/negative prompt to be same length/value": false,
"settings/persistent cond cache/visible": true,
"settings/persistent cond cache/value": true,
"settings/Use old emphasis implementation. Can be useful to reproduce old seeds./visible": true,
"settings/Use old emphasis implementation. Can be useful to reproduce old seeds./value": false,
"settings/Use old karras scheduler sigmas (0.1 to 10)./visible": true,
"settings/Use old karras scheduler sigmas (0.1 to 10)./value": false,
"settings/Do not make DPM++ SDE deterministic across different batch sizes./visible": true,
"settings/Do not make DPM++ SDE deterministic across different batch sizes./value": false,
"settings/For hires fix, use width/height sliders to set final resolution rather than first pass (disables Upscale by, Resize width/height to)./visible": true,
"settings/For hires fix, use width/height sliders to set final resolution rather than first pass (disables Upscale by, Resize width/height to)./value": false,
"settings/Do not fix prompt schedule for second order samplers./visible": true,
"settings/Do not fix prompt schedule for second order samplers./value": false,
"settings/For hires fix, calculate conds of second pass using extra networks of first pass./visible": true,
"settings/For hires fix, calculate conds of second pass using extra networks of first pass./value": false,
"settings/Lora/Networks: use old method that takes longer when you have multiple Loras active and produces same results as kohya-ss/sd-webui-additional-networks extension/visible": true,
"settings/Lora/Networks: use old method that takes longer when you have multiple Loras active and produces same results as kohya-ss/sd-webui-additional-networks extension/value": false,
"settings/Keep models in VRAM/visible": true,
"settings/Keep models in VRAM/value": false,
"settings/Include ranks of model tags matches in results./visible": true,
"settings/Include ranks of model tags matches in results./value": false,
"settings/BLIP: num_beams/visible": true,
"settings/BLIP: num_beams/value": 1,
"settings/BLIP: num_beams/minimum": 1,
"settings/BLIP: num_beams/maximum": 16,
"settings/BLIP: num_beams/step": 1,
"settings/BLIP: minimum description length/visible": true,
"settings/BLIP: minimum description length/value": 24,
"settings/BLIP: minimum description length/minimum": 1,
"settings/BLIP: minimum description length/maximum": 128,
"settings/BLIP: minimum description length/step": 1,
"settings/BLIP: maximum description length/visible": true,
"settings/BLIP: maximum description length/value": 48,
"settings/BLIP: maximum description length/minimum": 1,
"settings/BLIP: maximum description length/maximum": 256,
"settings/BLIP: maximum description length/step": 1,
"settings/CLIP: maximum number of lines in text file/visible": true,
"settings/CLIP: maximum number of lines in text file/value": 1500.0,
"settings/deepbooru: score threshold/visible": true,
"settings/deepbooru: score threshold/value": 0.5,
"settings/deepbooru: score threshold/minimum": 0,
"settings/deepbooru: score threshold/maximum": 1,
"settings/deepbooru: score threshold/step": 0.01,
"settings/deepbooru: sort tags alphabetically/visible": true,
"settings/deepbooru: sort tags alphabetically/value": true,
"settings/deepbooru: use spaces in tags/visible": true,
"settings/deepbooru: use spaces in tags/value": true,
"settings/deepbooru: escape (\\) brackets/visible": true,
"settings/deepbooru: escape (\\) brackets/value": true,
"settings/deepbooru: filter out those tags/visible": true,
"settings/deepbooru: filter out those tags/value": "",
"settings/Show hidden directories/visible": true,
"settings/Show hidden directories/value": true,
"settings/Show cards for models in hidden directories/visible": true,
"settings/Show cards for models in hidden directories/value": "When searched",
"settings/Card text scale/visible": true,
"settings/Card text scale/value": 1,
"settings/Card text scale/minimum": 0.0,
"settings/Card text scale/maximum": 2.0,
"settings/Card text scale/step": 0.01,
"settings/Show description on card/visible": true,
"settings/Show description on card/value": true,
"settings/Extra networks separator/visible": true,
"settings/Extra networks separator/value": " ",
"settings/Print a list of Textual Inversion embeddings when loading model/visible": true,
"settings/Print a list of Textual Inversion embeddings when loading model/value": false,
"settings/Add Textual Inversion hashes to infotext/visible": true,
"settings/Add Textual Inversion hashes to infotext/value": true,
"settings/Extra Networks default visibility/visible": true,
"settings/Extra Networks default visibility/value": true,
"settings/Card size for extra networks/visible": true,
"settings/Card size for extra networks/value": 1,
"settings/Card size for extra networks/minimum": 0.8,
"settings/Card size for extra networks/maximum": 2,
"settings/Card size for extra networks/step": 0.1,
"settings/Visible card rows for extra networks/visible": true,
"settings/Visible card rows for extra networks/value": 1,
"settings/Visible card rows for extra networks/minimum": 1,
"settings/Visible card rows for extra networks/maximum": 3,
"settings/Visible card rows for extra networks/step": 1,
"settings/Extra Networks aside view/visible": true,
"settings/Extra Networks aside view/value": true,
"settings/When adding to prompt, refer to Lora by/visible": true,
"settings/When adding to prompt, refer to Lora by/value": "Alias from file",
"settings/Add Lora hashes to infotext/visible": true,
"settings/Add Lora hashes to infotext/value": true,
"settings/Always show all networks on the Lora page/visible": true,
"settings/Always show all networks on the Lora page/value": false,
"settings/Extra networks tab order/visible": true,
"settings/Extra networks tab order/value": "",
"settings/Localization/visible": true,
"settings/Localization/value": "None",
"settings/img2img: height of image editor/visible": true,
"settings/img2img: height of image editor/value": 720,
"settings/img2img: height of image editor/minimum": 80,
"settings/img2img: height of image editor/maximum": 1600,
"settings/img2img: height of image editor/step": 1,
"settings/Show grid in results for web/visible": true,
"settings/Show grid in results for web/value": true,
"settings/For inpainting, include the greyscale mask in results for web/visible": true,
"settings/For inpainting, include the greyscale mask in results for web/value": false,
"settings/For inpainting, include masked composite in results for web/visible": true,
"settings/For inpainting, include masked composite in results for web/value": false,
"settings/Do not show any images in results for web/visible": true,
"settings/Do not show any images in results for web/value": false,
"settings/Send seed when sending prompt or image to other interface/visible": true,
"settings/Send seed when sending prompt or image to other interface/value": true,
"settings/Send size when sending prompt or image to another interface/visible": true,
"settings/Send size when sending prompt or image to another interface/value": true,
"settings/Enable full page image viewer/visible": true,
"settings/Enable full page image viewer/value": true,
"settings/Show images zoomed in by default in full page image viewer/visible": true,
"settings/Show images zoomed in by default in full page image viewer/value": true,
"settings/Navigate image viewer with gamepad/visible": true,
"settings/Navigate image viewer with gamepad/value": true,
"settings/Gamepad repeat period, in milliseconds/visible": true,
"settings/Gamepad repeat period, in milliseconds/value": 250.0,
"settings/Show generation progress in window title./visible": true,
"settings/Show generation progress in window title./value": true,
"settings/Use dropdown for sampler selection instead of radio group/visible": true,
"settings/Use dropdown for sampler selection instead of radio group/value": true,
"settings/Show Width/Height and Batch sliders in same row/visible": true,
"settings/Show Width/Height and Batch sliders in same row/value": true,
"settings/Ctrl+up/down precision when editing (attention:1.1)/visible": true,
"settings/Ctrl+up/down precision when editing (attention:1.1)/value": 0.1,
"settings/Ctrl+up/down precision when editing (attention:1.1)/minimum": 0.01,
"settings/Ctrl+up/down precision when editing (attention:1.1)/maximum": 0.2,
"settings/Ctrl+up/down precision when editing (attention:1.1)/step": 0.001,
"settings/Ctrl+up/down precision when editing <extra networks:0.9>/visible": true,
"settings/Ctrl+up/down precision when editing <extra networks:0.9>/value": 0.05,
"settings/Ctrl+up/down precision when editing <extra networks:0.9>/minimum": 0.01,
"settings/Ctrl+up/down precision when editing <extra networks:0.9>/maximum": 0.2,
"settings/Ctrl+up/down precision when editing <extra networks:0.9>/step": 0.001,
"settings/Ctrl+up/down word delimiters/visible": true,
"settings/Ctrl+up/down word delimiters/value": ".,\\/!?%^*;:{}=`~()",
"settings/Alt+left/right moves prompt elements/visible": true,
"settings/Alt+left/right moves prompt elements/value": true,
"settings/Hires fix: show hires sampler selection/visible": true,
"settings/Hires fix: show hires sampler selection/value": true,
"settings/Hires fix: show hires prompt and negative prompt/visible": true,
"settings/Hires fix: show hires prompt and negative prompt/value": true,
"settings/Quicksettings/visible": true,
"settings/Quicksettings/value": "sd_model_checkpoint,sd_vae,sd_hypernetwork,sd_lora,extra_networks_default_multiplier,show_progress_every_n_steps,live_previews_enable,always_discard_next_to_last_sigma,CLIP_stop_at_last_layers,stealth_pnginfo",
"settings/Hidden Tabs/visible": true,
"settings/Hidden Tabs/value": "",
"settings/Header Tabs/visible": true,
"settings/Header Tabs/value": "",
"settings/Interface order input/parameters | output/preview/visible": true,
"settings/Interface order input/parameters | output/preview/value": "row-reverse",
"settings/Generated image fit method/visible": true,
"settings/Generated image fit method/value": "Scale-down",
"settings/Show ticks for range sliders/visible": true,
"settings/Show ticks for range sliders/value": true,
"settings/Dispatch event change on release, for slider and input number components/visible": true,
"settings/Dispatch event change on release, for slider and input number components/value": true,
"settings/No sliders compact layout mode/visible": true,
"settings/No sliders compact layout mode/value": false,
"settings/Disable prompt token counters/visible": true,
"settings/Disable prompt token counters/value": false,
"settings/Place options in main UI into an accordion/visible": true,
"settings/Place options in main UI into an accordion/value": false,
"settings/Add model hash to generation information/visible": true,
"settings/Add model hash to generation information/value": true,
"settings/Add model name to generation information/visible": true,
"settings/Add model name to generation information/value": true,
"settings/Add user name to generation information when authenticated/visible": true,
"settings/Add user name to generation information when authenticated/value": false,
"settings/Add program version to generation information/visible": true,
"settings/Add program version to generation information/value": true,
"settings/Disregard checkpoint information from pasted infotext/visible": true,
"settings/Disregard checkpoint information from pasted infotext/value": true,
"settings/Infer styles from prompts of pasted infotext/visible": true,
"settings/Infer styles from prompts of pasted infotext/value": "Ignore",
"settings/Show progressbar/visible": true,
"settings/Show progressbar/value": true,
"settings/Live preview file format/visible": true,
"settings/Live preview file format/value": "webp",
"settings/Show previews of all images generated in a batch as a grid/visible": true,
"settings/Show previews of all images generated in a batch as a grid/value": true,
"settings/Live preview method/visible": true,
"settings/Live preview method/value": "Approx NN",
"settings/Live preview subject/visible": true,
"settings/Live preview subject/value": "Prompt",
"settings/Progressbar and preview update period/visible": true,
"settings/Progressbar and preview update period/value": 100.0,
"settings/Live preview image fit method/visible": true,
"settings/Live preview image fit method/value": "Scale-down",
"settings/Eta for DDIM/visible": true,
"settings/Eta for DDIM/value": 0,
"settings/Eta for DDIM/minimum": 0.0,
"settings/Eta for DDIM/maximum": 1.0,
"settings/Eta for DDIM/step": 0.01,
"settings/Eta for ancestral samplers/visible": true,
"settings/Eta for ancestral samplers/value": 1,
"settings/Eta for ancestral samplers/minimum": 0.0,
"settings/Eta for ancestral samplers/maximum": 1.0,
"settings/Eta for ancestral samplers/step": 0.01,
"settings/img2img DDIM discretize/visible": true,
"settings/img2img DDIM discretize/value": "uniform",
"settings/sigma churn/visible": true,
"settings/sigma churn/value": 0,
"settings/sigma churn/minimum": 0.0,
"settings/sigma churn/maximum": 1.0,
"settings/sigma churn/step": 0.01,
"settings/sigma tmin/visible": true,
"settings/sigma tmin/value": 0,
"settings/sigma tmin/minimum": 0.0,
"settings/sigma tmin/maximum": 1.0,
"settings/sigma tmin/step": 0.01,
"settings/sigma noise/visible": true,
"settings/sigma noise/value": 1,
"settings/sigma noise/minimum": 0.0,
"settings/sigma noise/maximum": 1.0,
"settings/sigma noise/step": 0.01,
"settings/scheduler type/visible": true,
"settings/scheduler type/value": "Automatic",
"settings/sigma min/visible": true,
"settings/sigma min/value": 0.0,
"settings/sigma max/visible": true,
"settings/sigma max/value": 0.0,
"settings/rho/visible": true,
"settings/rho/value": 0.0,
"settings/Eta noise seed delta/visible": true,
"settings/Eta noise seed delta/value": 31337,
"settings/UniPC variant/visible": true,
"settings/UniPC variant/value": "bh1",
"settings/UniPC skip type/visible": true,
"settings/UniPC skip type/value": "time_uniform",
"settings/UniPC order/visible": true,
"settings/UniPC order/value": 3,
"settings/UniPC order/minimum": 1,
"settings/UniPC order/maximum": 50,
"settings/UniPC order/step": 1,
"settings/UniPC lower order final/visible": true,
"settings/UniPC lower order final/value": true,
"settings/Maximum number of images in upscaling cache/visible": true,
"settings/Maximum number of images in upscaling cache/value": 5,
"settings/Maximum number of images in upscaling cache/minimum": 0,
"settings/Maximum number of images in upscaling cache/maximum": 10,
"settings/Maximum number of images in upscaling cache/step": 1,
"settings/Zoom canvas/visible": true,
"settings/Zoom canvas/value": "Alt",
"settings/Adjust brush size/visible": true,
"settings/Adjust brush size/value": "Ctrl",
"settings/Moving the canvas/visible": true,
"settings/Moving the canvas/value": "F",
"settings/Fullscreen Mode, maximizes the picture so that it fits into the screen and stretches it to its full width /visible": true,
"settings/Fullscreen Mode, maximizes the picture so that it fits into the screen and stretches it to its full width /value": "S",
"settings/Reset zoom and canvas positon/visible": true,
"settings/Reset zoom and canvas positon/value": "R",
"settings/Toggle overlap/visible": true,
"settings/Toggle overlap/value": "O",
"settings/Enable tooltip on the canvas/visible": true,
"settings/Enable tooltip on the canvas/value": true,
"settings/Take the focus off the prompt when working with a canvas/visible": true,
"settings/Take the focus off the prompt when working with a canvas/value": false,
"settings/Tag filename/visible": true,
"settings/Tag filename/value": "danbooru.csv",
"settings/Enable Tag Autocompletion/visible": true,
"settings/Enable Tag Autocompletion/value": true,
"settings/Active in txt2img/visible": true,
"settings/Active in txt2img/value": true,
"settings/Active in img2img/visible": true,
"settings/Active in img2img/value": true,
"settings/Active in negative prompts/visible": true,
"settings/Active in negative prompts/value": true,
"settings/Active in third party textboxes/visible": true,
"settings/Active in third party textboxes/value": true,
"settings/Black/Whitelist models/visible": true,
"settings/Black/Whitelist models/value": "",
"settings/Mode to use for model list/visible": true,
"settings/Mode to use for model list/value": "Blacklist",
"settings/Move completion popup together with text cursor/visible": true,
"settings/Move completion popup together with text cursor/value": true,
"settings/Maximum results/visible": true,
"settings/Maximum results/value": 10.0,
"settings/Show all results/visible": true,
"settings/Show all results/value": false,
"settings/How many results to load at once/visible": true,
"settings/How many results to load at once/value": 50.0,
"settings/Time in ms to wait before triggering completion again/visible": true,
"settings/Time in ms to wait before triggering completion again/value": 100.0,
"settings/Search for wildcards/visible": true,
"settings/Search for wildcards/value": true,
"settings/Sort wildcard file contents alphabetically/visible": true,
"settings/Sort wildcard file contents alphabetically/value": true,
"settings/Search for embeddings/visible": true,
"settings/Search for embeddings/value": true,
"settings/Include embeddings in normal tag results/visible": true,
"settings/Include embeddings in normal tag results/value": false,
"settings/Search for hypernetworks/visible": true,
"settings/Search for hypernetworks/value": true,
"settings/Search for Loras/visible": true,
"settings/Search for Loras/value": true,
"settings/Search for LyCORIS/LoHa/visible": true,
"settings/Search for LyCORIS/LoHa/value": true,
"settings/Show '?' next to tags, linking to its Danbooru or e621 wiki page/visible": true,
"settings/Show '?' next to tags, linking to its Danbooru or e621 wiki page/value": true,
"settings/Show preview thumbnails for extra networks if available/visible": true,
"settings/Show preview thumbnails for extra networks if available/value": true,
"settings/Replace underscores with spaces on insertion/visible": true,
"settings/Replace underscores with spaces on insertion/value": true,
"settings/Escape parentheses on insertion/visible": true,
"settings/Escape parentheses on insertion/value": true,
"settings/Append comma on tag autocompletion/visible": true,
"settings/Append comma on tag autocompletion/value": true,
"settings/Append space on tag autocompletion/visible": true,
"settings/Append space on tag autocompletion/value": true,
"settings/Always append space if inserting at the end of the textbox/visible": true,
"settings/Always append space if inserting at the end of the textbox/value": true,
"settings/Try to add known trigger words for LORA/LyCO models/visible": true,
"settings/Try to add known trigger words for LORA/LyCO models/value": "Never",
"settings/How to complete nested wildcard paths/visible": true,
"settings/How to complete nested wildcard paths/value": "To next folder level",
"settings/Search by alias/visible": true,
"settings/Search by alias/value": true,
"settings/Only show alias/visible": true,
"settings/Only show alias/value": false,
"settings/Translation filename/visible": true,
"settings/Translation filename/value": "None",
"settings/Translation file uses old 3-column translation format instead of the new 2-column one/visible": true,
"settings/Translation file uses old 3-column translation format instead of the new 2-column one/value": false,
"settings/Search by translation/visible": true,
"settings/Search by translation/value": true,
"settings/Show live tag translation below prompt /visible": true,
"settings/Show live tag translation below prompt /value": false,
"settings/Extra filename/visible": true,
"settings/Extra filename/value": "ncpt-tags.csv",
"settings/Mode to add the extra tags to the main tag list/visible": true,
"settings/Mode to add the extra tags to the main tag list/value": "Insert before",
"settings/Chant filename/visible": true,
"settings/Chant filename/value": "demo-chants.json",
"settings/Use online version/visible": true,
"settings/Use online version/value": false,
"settings/Directory for detected maps auto saving/visible": true,
"settings/Directory for detected maps auto saving/value": "/content/sdw/extensions/sd-webui-controlnet/detected_maps",
"settings/Extra path to scan for ControlNet models (e.g. training output directory)/visible": true,
"settings/Extra path to scan for ControlNet models (e.g. training output directory)/value": "/content/sdw/models/ControlNet",
"settings/Path to directory containing annotator model directories (requires restart, overrides corresponding command line flag)/visible": true,
"settings/Path to directory containing annotator model directories (requires restart, overrides corresponding command line flag)/value": "",
"settings/Multi-ControlNet: ControlNet unit number (requires restart)/visible": true,
"settings/Multi-ControlNet: ControlNet unit number (requires restart)/value": 3,
"settings/Multi-ControlNet: ControlNet unit number (requires restart)/minimum": 1,
"settings/Multi-ControlNet: ControlNet unit number (requires restart)/maximum": 10,
"settings/Multi-ControlNet: ControlNet unit number (requires restart)/step": 1,
"settings/Model cache size (requires restart)/visible": true,
"settings/Model cache size (requires restart)/value": 2,
"settings/Model cache size (requires restart)/minimum": 1,
"settings/Model cache size (requires restart)/maximum": 5,
"settings/Model cache size (requires restart)/step": 1,
"settings/ControlNet inpainting Gaussian blur sigma/visible": true,
"settings/ControlNet inpainting Gaussian blur sigma/value": 7,
"settings/ControlNet inpainting Gaussian blur sigma/minimum": 0,
"settings/ControlNet inpainting Gaussian blur sigma/maximum": 64,
"settings/ControlNet inpainting Gaussian blur sigma/step": 1,
"settings/Do not apply ControlNet during highres fix/visible": true,
"settings/Do not apply ControlNet during highres fix/value": false,
"settings/Do not append detectmap to output/visible": true,
"settings/Do not append detectmap to output/value": false,
"settings/Allow detectmap auto saving/visible": true,
"settings/Allow detectmap auto saving/value": false,
"settings/Allow other script to control this extension/visible": true,
"settings/Allow other script to control this extension/value": true,
"settings/Paste ControlNet parameters in infotext/visible": true,
"settings/Paste ControlNet parameters in infotext/value": false,
"settings/Show batch images in gradio gallery output/visible": true,
"settings/Show batch images in gradio gallery output/value": false,
"settings/Increment seed after each controlnet batch iteration/visible": true,
"settings/Increment seed after each controlnet batch iteration/value": false,
"settings/Disable control type selection/visible": true,
"settings/Disable control type selection/value": false,
"settings/Disable openpose edit/visible": true,
"settings/Disable openpose edit/value": false,
"settings/Ignore mask on ControlNet input image if control type is not inpaint/visible": true,
"settings/Ignore mask on ControlNet input image if control type is not inpaint/value": false,
"settings/View changes/visible": true,
"settings/Apply/visible": true,
"settings/Request browser notifications/visible": true,
"settings/Download localization template/visible": true,
"settings/Reload custom script bodies (No ui updates, No restart)/visible": true,
"settings/Unload SD checkpoint to free VRAM/visible": true,
"settings/Reload the last SD checkpoint back into VRAM/visible": true,
"settings/Show all pages/visible": true,
"extensions/Tabs@tabs_extensions/selected": null,
"extensions/Apply and quit/visible": true,
"extensions/Check for updates/visible": true,
"extensions/Disable all extensions/visible": true,
"extensions/Disable all extensions/value": "none",
"extensions/Load from:/visible": true,
"extensions/Extension index URL/visible": true,
"extensions/Extension index URL/value": "https://raw.githubusercontent.com/AUTOMATIC1111/stable-diffusion-webui-extensions/master/index.json",
"extensions/Order/visible": true,
"extensions/Order/value": "newest first",
"extensions/Search/visible": true,
"extensions/Search/value": "",
"extensions/URL for extension's git repository/visible": true,
"extensions/URL for extension's git repository/value": "",
"extensions/Specific branch name/visible": true,
"extensions/Specific branch name/value": "",
"extensions/Local directory name/visible": true,
"extensions/Local directory name/value": "",
"extensions/Install/visible": true,
"extensions/Saved Configs/visible": true,
"extensions/Saved Configs/value": "Current",
"extensions/\ud83d\udd04/visible": true,
"extensions/State to restore/visible": true,
"extensions/State to restore/value": "extensions",
"extensions/Restore Selected Config/visible": true,
"extensions/Save Current Config/visible": true,
"webui/Tabs@tabs/selected": null
} |