File size: 159,429 Bytes
98b0ea8 | 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 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 | {
"cells": [
{
"cell_type": "markdown",
"id": "1aa13061-4879-421f-a472-8c4419b4e8b9",
"metadata": {},
"source": [
"[](https://studiolab.sagemaker.aws/import/github/gutris1/segsmaker/blob/main/Segsmaker.ipynb)"
]
},
{
"cell_type": "markdown",
"id": "26786ea3-e294-44b6-900a-798b0880de76",
"metadata": {
"tags": []
},
"source": [
"## Conda"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "3574c7ad-21c7-4b83-ba0d-ae6dc50bad74",
"metadata": {
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
"<style>:root {\n",
" --conda-bg: linear-gradient(to right,\n",
" rgb(255, 0, 0),\n",
" rgb(255, 0, 25),\n",
" rgb(255, 0, 50),\n",
" rgb(255, 0, 75),\n",
" rgb(255, 0, 100),\n",
" rgb(255, 0, 125),\n",
" rgb(255, 0, 150),\n",
" rgb(255, 0, 175),\n",
" rgb(255, 0, 200),\n",
" rgb(255, 0, 225),\n",
" rgb(255, 0, 255),\n",
" rgb(225, 0, 255),\n",
" rgb(200, 0, 255),\n",
" rgb(175, 0, 255),\n",
" rgb(150, 0, 255),\n",
" rgb(125, 0, 255),\n",
" rgb(100, 0, 255),\n",
" rgb(75, 0, 255),\n",
" rgb(50, 0, 255),\n",
" rgb(25, 0, 255),\n",
" rgb(0, 0, 255),\n",
" rgb(0, 25, 255),\n",
" rgb(0, 50, 255),\n",
" rgb(0, 75, 255),\n",
" rgb(0, 100, 255),\n",
" rgb(0, 125, 255),\n",
" rgb(0, 150, 255),\n",
" rgb(0, 175, 255),\n",
" rgb(0, 200, 255),\n",
" rgb(0, 225, 255),\n",
" rgb(0, 255, 255),\n",
" rgb(0, 255, 225),\n",
" rgb(0, 255, 200),\n",
" rgb(0, 255, 175),\n",
" rgb(0, 255, 150),\n",
" rgb(0, 255, 125),\n",
" rgb(0, 255, 100),\n",
" rgb(0, 255, 75),\n",
" rgb(0, 255, 50),\n",
" rgb(0, 255, 25),\n",
" rgb(0, 255, 0),\n",
" rgb(25, 255, 0),\n",
" rgb(50, 255, 0),\n",
" rgb(75, 255, 0),\n",
" rgb(100, 255, 0),\n",
" rgb(125, 255, 0),\n",
" rgb(150, 255, 0),\n",
" rgb(175, 255, 0),\n",
" rgb(200, 255, 0),\n",
" rgb(225, 255, 0),\n",
" rgb(255, 255, 0), \n",
" rgb(255, 225, 0),\n",
" rgb(255, 200, 0),\n",
" rgb(255, 175, 0),\n",
" rgb(255, 150, 0),\n",
" rgb(255, 125, 0),\n",
" rgb(255, 100, 0),\n",
" rgb(255, 75, 0),\n",
" rgb(255, 50, 0),\n",
" rgb(255, 25, 0),\n",
" rgb(255, 0, 0));}\n",
"\n",
".boxs {\n",
" border: 3px solid transparent;\n",
" border-radius: 10px;\n",
" margin: 0;\n",
" background: url('https://wallpapercave.com/dwp1x/wp5126154.jpg');\n",
" background-size: 100% 100%;\n",
" background-position: 100% 200%;\n",
" animation: slideAndBlurFromCenter 1s, BorderPulse 15s infinite;\n",
"}\n",
" \n",
".widget-container {\n",
" margin-top: 0px;\n",
" margin-right: 0px;\n",
" margin-bottom: 0px;\n",
" margin-left: 0px;\n",
" position: relative;\n",
" overflow: visible;\n",
"}\n",
"\n",
".api-input input[type=\"text\"] {\n",
" font-family: 'Roboto Mono', monospace;\n",
" margin-top: -10px;\n",
" margin-right: 0px;\n",
" margin-bottom: 0px;\n",
" margin-left: 0px;\n",
" font-size: 15px;\n",
" height: 35px;\n",
" color: white;\n",
" text-align: center;\n",
" border-radius: 10px;\n",
" border: 3px solid #ab22fe;\n",
" transform: scale(125%);\n",
"}\n",
"\n",
".api-input input:focus {\n",
" height: 35px;\n",
" border-radius: 10px;\n",
" border: 3px solid transparent;\n",
" animation: BorderPulse 10s infinite;\n",
"}\n",
"\n",
".api-input input:hover {\n",
" height: 35px;\n",
" border-radius: 10px;\n",
" border: 3px solid #2197f2;\n",
"}\n",
"\n",
".save-button {\n",
" font-family: 'Times New Roman', serif;\n",
" text-align: center;\n",
" margin-top: 0px;\n",
" margin-right: 0px;\n",
" margin-bottom: -10px;\n",
" margin-left: 0px;\n",
" font-size: 25px;\n",
" width: 100px;\n",
" height: 40px;\n",
" color: white;\n",
" border-radius: 10px;\n",
" border: 3px solid #2197f2;\n",
" background: transparent;\n",
" transition: transform 0.5s ease;}\n",
"\n",
".save-button:hover {\n",
" transform: scale(1.3);\n",
" color: black;\n",
" border-radius: 10px;\n",
" border: 3px solid transparent;\n",
" background-size: 800% 100%;\n",
" cursor: pointer;\n",
" background-image: var(--conda-bg);\n",
" animation: slideBackground 10s linear infinite, BorderPulse 7s infinite;}\n",
"\n",
".gradient-conda {\n",
" width: 200px;\n",
" height: 5px;\n",
" font-size: 0px;\n",
" background-image: var(--conda-bg);\n",
" background-size: 800% 500%;\n",
" border-radius: 2px;\n",
" border: 1px solid transparent;\n",
" display: inline-block;\n",
" animation: slideBackground 10s linear infinite, BorderPulse 7s infinite;}\n",
"\n",
"@keyframes slideBackground {\n",
" 0% { background-position: 0% 50%; }\n",
" 100% { background-position: -800% 50%; }}\n",
"\n",
"@keyframes BorderPulse {\n",
" 0% {border-color: rgba(255, 0, 0, 1);}\n",
" 1.67% {border-color: rgba(255, 0, 25, 0.75);}\n",
" 3.33% {border-color: rgba(255, 0, 50, 0.5);}\n",
" 5.00% {border-color: rgba(255, 0, 75, 0.75);}\n",
" 6.67% {border-color: rgba(255, 0, 100, 1);}\n",
" 8.33% {border-color: rgba(255, 0, 125, 0.75);}\n",
" 10.00% {border-color: rgba(255, 0, 150, 0.5);}\n",
" 11.67% {border-color: rgba(255, 0, 175, 0.75);}\n",
" 13.33% {border-color: rgba(255, 0, 200, 1);}\n",
" 15.00% {border-color: rgba(255, 0, 225, 0.75);}\n",
" 16.67% {border-color: rgba(255, 0, 255, 0.5);}\n",
" 18.33% {border-color: rgba(225, 0, 255, 0.75);}\n",
" 20.00% {border-color: rgba(200, 0, 255, 1);}\n",
" 21.67% {border-color: rgba(175, 0, 255, 0.75);}\n",
" 23.33% {border-color: rgba(150, 0, 255, 0.5);}\n",
" 25.00% {border-color: rgba(125, 0, 255, 0.75);}\n",
" 26.67% {border-color: rgba(100, 0, 255, 1);}\n",
" 28.33% {border-color: rgba(75, 0, 255, 0.75);}\n",
" 30.00% {border-color: rgba(50, 0, 255, 0.5);}\n",
" 31.67% {border-color: rgba(25, 0, 255, 0.75);}\n",
" 33.33% {border-color: rgba(0, 0, 255, 1);}\n",
" 35.00% {border-color: rgba(0, 25, 255, 0.75);}\n",
" 36.67% {border-color: rgba(0, 50, 255, 0.5);}\n",
" 38.33% {border-color: rgba(0, 75, 255, 0.75);}\n",
" 40.00% {border-color: rgba(0, 100, 255, 1);}\n",
" 41.67% {border-color: rgba(0, 125, 255, 0.75);}\n",
" 43.33% {border-color: rgba(0, 150, 255, 0.5);}\n",
" 45.00% {border-color: rgba(0, 175, 255, 0.75);}\n",
" 46.67% {border-color: rgba(0, 200, 255, 1);}\n",
" 48.33% {border-color: rgba(0, 225, 255, 0.75);}\n",
" 50.00% {border-color: rgba(0, 255, 255, 0.5);}\n",
" 51.67% {border-color: rgba(0, 255, 225, 0.75);}\n",
" 53.33% {border-color: rgba(0, 255, 200, 1);}\n",
" 55.00% {border-color: rgba(0, 255, 175, 0.75);}\n",
" 56.67% {border-color: rgba(0, 255, 150, 0.5);}\n",
" 58.33% {border-color: rgba(0, 255, 125, 0.75);}\n",
" 60.00% {border-color: rgba(0, 255, 100, 1);}\n",
" 61.67% {border-color: rgba(0, 255, 75, 0.75);}\n",
" 63.33% {border-color: rgba(0, 255, 50, 0.5);}\n",
" 65.00% {border-color: rgba(0, 255, 25, 0.75);}\n",
" 66.67% {border-color: rgba(0, 255, 0, 1);}\n",
" 68.33% {border-color: rgba(25, 255, 0, 0.75);}\n",
" 70.00% {border-color: rgba(50, 255, 0, 0.5);}\n",
" 71.67% {border-color: rgba(75, 255, 0, 0.75);}\n",
" 73.33% {border-color: rgba(100, 255, 0, 1);}\n",
" 75.00% {border-color: rgba(125, 255, 0, 0.75);}\n",
" 76.67% {border-color: rgba(150, 255, 0, 0.5);}\n",
" 78.33% {border-color: rgba(175, 255, 0, 0.75);}\n",
" 80.00% {border-color: rgba(200, 255, 0, 1);}\n",
" 81.67% {border-color: rgba(225, 255, 0, 0.75);}\n",
" 83.33% {border-color: rgba(255, 255, 0, 0.5);}\n",
" 85.00% {border-color: rgba(255, 225, 0, 0.75);}\n",
" 86.67% {border-color: rgba(255, 200, 0, 1);}\n",
" 88.33% {border-color: rgba(255, 175, 0, 0.75);}\n",
" 90.00% {border-color: rgba(255, 150, 0, 0.5);}\n",
" 91.67% {border-color: rgba(255, 125, 0, 0.75);}\n",
" 93.33% {border-color: rgba(255, 100, 0, 1);}\n",
" 95.00% {border-color: rgba(255, 75, 0, 0.75);}\n",
" 96.67% {border-color: rgba(255, 50, 0, 0.5);}\n",
" 98.33% {border-color: rgba(255, 25, 0, 0.75);}\n",
" 100% {border-color: rgba(255, 0, 0, 1);}}\n",
"\n",
"@keyframes slideAndBlurFromCenter {\n",
" from {\n",
" transform: scale(0.1);\n",
" opacity: 0;\n",
" filter: blur(1000px);}\n",
" to {\n",
" transform: scale(1);\n",
" opacity: 1;\n",
" filter: blur(0px);}}\n",
"</style>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(Text(value='', placeholder='enter your civitai API KEY here', _dom_classes=('api-input',)), But…"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "eff974b560a34ff9a8753a47a5405801",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Output()"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "654bc7030fe3466a96abe02f6503347a",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Output()"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"!curl -sLo ~/.conda/conda_install.py https://github.com/gutris1/segsmaker/raw/main/script/conda1.py\n",
"%run ~/.conda/conda_install.py"
]
},
{
"cell_type": "markdown",
"id": "011fac09-3453-4fea-bad6-da971f037c3b",
"metadata": {
"tags": [],
"toc-hr-collapsed": true
},
"source": [
"## Clone SD"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "3b4990da-52c9-4728-b04a-a989215221e3",
"metadata": {
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
"<style>:root {\n",
" --gradient-background: linear-gradient(to right,\n",
" rgb(255, 0, 0),\n",
" rgb(255, 0, 25),\n",
" rgb(255, 0, 50),\n",
" rgb(255, 0, 75),\n",
" rgb(255, 0, 100),\n",
" rgb(255, 0, 125),\n",
" rgb(255, 0, 150),\n",
" rgb(255, 0, 175),\n",
" rgb(255, 0, 200),\n",
" rgb(255, 0, 225),\n",
" rgb(255, 0, 255),\n",
" rgb(225, 0, 255),\n",
" rgb(200, 0, 255),\n",
" rgb(175, 0, 255),\n",
" rgb(150, 0, 255),\n",
" rgb(125, 0, 255),\n",
" rgb(100, 0, 255),\n",
" rgb(75, 0, 255),\n",
" rgb(50, 0, 255),\n",
" rgb(25, 0, 255),\n",
" rgb(0, 0, 255),\n",
" rgb(0, 25, 255),\n",
" rgb(0, 50, 255),\n",
" rgb(0, 75, 255),\n",
" rgb(0, 100, 255),\n",
" rgb(0, 125, 255),\n",
" rgb(0, 150, 255),\n",
" rgb(0, 175, 255),\n",
" rgb(0, 200, 255),\n",
" rgb(0, 225, 255),\n",
" rgb(0, 255, 255),\n",
" rgb(0, 255, 225),\n",
" rgb(0, 255, 200),\n",
" rgb(0, 255, 175),\n",
" rgb(0, 255, 150),\n",
" rgb(0, 255, 125),\n",
" rgb(0, 255, 100),\n",
" rgb(0, 255, 75),\n",
" rgb(0, 255, 50),\n",
" rgb(0, 255, 25),\n",
" rgb(0, 255, 0),\n",
" rgb(25, 255, 0),\n",
" rgb(50, 255, 0),\n",
" rgb(75, 255, 0),\n",
" rgb(100, 255, 0),\n",
" rgb(125, 255, 0),\n",
" rgb(150, 255, 0),\n",
" rgb(175, 255, 0),\n",
" rgb(200, 255, 0),\n",
" rgb(225, 255, 0),\n",
" rgb(255, 255, 0), \n",
" rgb(255, 225, 0),\n",
" rgb(255, 200, 0),\n",
" rgb(255, 175, 0),\n",
" rgb(255, 150, 0),\n",
" rgb(255, 125, 0),\n",
" rgb(255, 100, 0),\n",
" rgb(255, 75, 0),\n",
" rgb(255, 50, 0),\n",
" rgb(255, 25, 0),\n",
" rgb(255, 0, 0));}\n",
"\n",
".boxxx {\n",
" border: 3px solid transparent;\n",
" border-radius: 10px;\n",
" margin: 0;\n",
" background: url('https://wallpapercave.com/dwp1x/wp5126154.jpg');\n",
" background-size: 100% 100%;\n",
" background-position: 100% 200%;\n",
" animation: slideAndBlurFromCenter 1s, BorderPulse 15s infinite;\n",
" transition: border-color 0.1s ease-out;}\n",
"\n",
".widget-container {\n",
" margin-top: 0px;\n",
" margin-right: 0px;\n",
" margin-bottom: 0px;\n",
" margin-left: 0px;\n",
" position: relative;\n",
" overflow: visible;}\n",
"\n",
".b1, .b2, .out {\n",
" font-family: 'Times New Roman', serif;\n",
" font-size: 25px;\n",
" text-align: center;\n",
" background: transparent;}\n",
"\n",
".b1 { margin-left: 0px;}\n",
".b2 { margin-left: 100px;}\n",
"\n",
".b1, .b2 {\n",
" border: 2px solid #2197f2;\n",
" margin-top: 0px;\n",
" margin-right: 0px;\n",
" margin-bottom: 0px;\n",
" width: 100px;\n",
" height: 40px;\n",
" color: white;\n",
" border-radius: 10px;\n",
" transition: all 0.5s ease-out;}\n",
"\n",
".out {\n",
" margin-top: 0px;\n",
" margin-right: 0px;\n",
" margin-bottom: 0px;\n",
" margin-left: 0px;\n",
" font-size: 25px;\n",
" width: 110px;\n",
" height: 40px;\n",
" color: white;\n",
" border-radius: 10px;\n",
" border: 2px solid #2197f2;\n",
" background: transparent;\n",
" transition: all 0.5s ease-out;}\n",
"\n",
".b1:hover, .b2:hover, .out:hover {\n",
" transform: scale(1.2);\n",
" border: 2px solid transparent;\n",
" color: #ab22fe;\n",
" background-image: linear-gradient(to right, transparent, #000000);\n",
" background-size: 500% 100%;\n",
" background-position: center;\n",
" animation: BorderPulse 7s infinite;\n",
" transition: all 0.3s ease-out;}\n",
"\n",
".b1:focus, .b2:focus {\n",
" transform: scale(1.2);\n",
" color: #212121;\n",
" cursor: pointer;\n",
" border: 1px solid transparent;\n",
" background-size: 800% 500%;\n",
" background-image: var(--gradient-background);\n",
" animation: slideBackground 10s linear infinite;\n",
" transition: all 0.3s ease-out;}\n",
"\n",
"@keyframes slideBackground {\n",
" 0% { background-position: 0% 50%; }\n",
" 100% { background-position: -800% 50%; }}\n",
"\n",
"@keyframes BorderPulse {\n",
" 0% {border-color: rgba(255, 0, 0, 1);}\n",
" 1.67% {border-color: rgba(255, 0, 25, 0.75);}\n",
" 3.33% {border-color: rgba(255, 0, 50, 0.5);}\n",
" 5.00% {border-color: rgba(255, 0, 75, 0.75);}\n",
" 6.67% {border-color: rgba(255, 0, 100, 1);}\n",
" 8.33% {border-color: rgba(255, 0, 125, 0.75);}\n",
" 10.00% {border-color: rgba(255, 0, 150, 0.5);}\n",
" 11.67% {border-color: rgba(255, 0, 175, 0.75);}\n",
" 13.33% {border-color: rgba(255, 0, 200, 1);}\n",
" 15.00% {border-color: rgba(255, 0, 225, 0.75);}\n",
" 16.67% {border-color: rgba(255, 0, 255, 0.5);}\n",
" 18.33% {border-color: rgba(225, 0, 255, 0.75);}\n",
" 20.00% {border-color: rgba(200, 0, 255, 1);}\n",
" 21.67% {border-color: rgba(175, 0, 255, 0.75);}\n",
" 23.33% {border-color: rgba(150, 0, 255, 0.5);}\n",
" 25.00% {border-color: rgba(125, 0, 255, 0.75);}\n",
" 26.67% {border-color: rgba(100, 0, 255, 1);}\n",
" 28.33% {border-color: rgba(75, 0, 255, 0.75);}\n",
" 30.00% {border-color: rgba(50, 0, 255, 0.5);}\n",
" 31.67% {border-color: rgba(25, 0, 255, 0.75);}\n",
" 33.33% {border-color: rgba(0, 0, 255, 1);}\n",
" 35.00% {border-color: rgba(0, 25, 255, 0.75);}\n",
" 36.67% {border-color: rgba(0, 50, 255, 0.5);}\n",
" 38.33% {border-color: rgba(0, 75, 255, 0.75);}\n",
" 40.00% {border-color: rgba(0, 100, 255, 1);}\n",
" 41.67% {border-color: rgba(0, 125, 255, 0.75);}\n",
" 43.33% {border-color: rgba(0, 150, 255, 0.5);}\n",
" 45.00% {border-color: rgba(0, 175, 255, 0.75);}\n",
" 46.67% {border-color: rgba(0, 200, 255, 1);}\n",
" 48.33% {border-color: rgba(0, 225, 255, 0.75);}\n",
" 50.00% {border-color: rgba(0, 255, 255, 0.5);}\n",
" 51.67% {border-color: rgba(0, 255, 225, 0.75);}\n",
" 53.33% {border-color: rgba(0, 255, 200, 1);}\n",
" 55.00% {border-color: rgba(0, 255, 175, 0.75);}\n",
" 56.67% {border-color: rgba(0, 255, 150, 0.5);}\n",
" 58.33% {border-color: rgba(0, 255, 125, 0.75);}\n",
" 60.00% {border-color: rgba(0, 255, 100, 1);}\n",
" 61.67% {border-color: rgba(0, 255, 75, 0.75);}\n",
" 63.33% {border-color: rgba(0, 255, 50, 0.5);}\n",
" 65.00% {border-color: rgba(0, 255, 25, 0.75);}\n",
" 66.67% {border-color: rgba(0, 255, 0, 1);}\n",
" 68.33% {border-color: rgba(25, 255, 0, 0.75);}\n",
" 70.00% {border-color: rgba(50, 255, 0, 0.5);}\n",
" 71.67% {border-color: rgba(75, 255, 0, 0.75);}\n",
" 73.33% {border-color: rgba(100, 255, 0, 1);}\n",
" 75.00% {border-color: rgba(125, 255, 0, 0.75);}\n",
" 76.67% {border-color: rgba(150, 255, 0, 0.5);}\n",
" 78.33% {border-color: rgba(175, 255, 0, 0.75);}\n",
" 80.00% {border-color: rgba(200, 255, 0, 1);}\n",
" 81.67% {border-color: rgba(225, 255, 0, 0.75);}\n",
" 83.33% {border-color: rgba(255, 255, 0, 0.5);}\n",
" 85.00% {border-color: rgba(255, 225, 0, 0.75);}\n",
" 86.67% {border-color: rgba(255, 200, 0, 1);}\n",
" 88.33% {border-color: rgba(255, 175, 0, 0.75);}\n",
" 90.00% {border-color: rgba(255, 150, 0, 0.5);}\n",
" 91.67% {border-color: rgba(255, 125, 0, 0.75);}\n",
" 93.33% {border-color: rgba(255, 100, 0, 1);}\n",
" 95.00% {border-color: rgba(255, 75, 0, 0.75);}\n",
" 96.67% {border-color: rgba(255, 50, 0, 0.5);}\n",
" 98.33% {border-color: rgba(255, 25, 0, 0.75);}\n",
" 100% {border-color: rgba(255, 0, 0, 1);}}\n",
"\n",
"@keyframes slideAndBlurFromCenter {\n",
" from {\n",
" transform: scale(0);\n",
" opacity: 0;\n",
" filter: blur(1000px);}\n",
" to {\n",
" transform: scale(1);\n",
" opacity: 1;\n",
" filter: blur(0px);}}\n",
"\n",
".gradient-text {\n",
" width: 750px;\n",
" height: 5px;\n",
" font-size: 0px;\n",
" background-image: var(--gradient-background);\n",
" background-size: 800% 500%;\n",
" color: black;\n",
" border-radius: 2px;\n",
" border: 1px solid transparent;\n",
" display: inline-block;\n",
" animation: slideBackground 20s linear infinite, BorderPulse 7s infinite;\n",
" transition: all 0.3s ease-out;}\n",
"</style>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(HBox(children=(Button(description='SD 1.5', style=ButtonStyle(), _dom_classes=('b1',)), Button(…"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "5a2a053797914484a6f32041e2253a97",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Output()"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "dc8a8490aa35494fa53ff574e112b698",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Output()"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"!curl -sLo ~/.conda/setup.py https://github.com/gutris1/segsmaker/raw/main/ui/sd/asd/setup.py\n",
"%run ~/.conda/setup.py"
]
},
{
"cell_type": "code",
"execution_count": 15,
"id": "598827fd-7cf0-4d73-b982-c417916b7e96",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Cloning into 'a1111-stable-diffusion-webui-vram-estimator'...\n",
"remote: Enumerating objects: 26, done.\u001b[K\n",
"remote: Counting objects: 100% (26/26), done.\u001b[K\n",
"remote: Compressing objects: 100% (17/17), done.\u001b[K\n",
"remote: Total 26 (delta 8), reused 13 (delta 3), pack-reused 0\u001b[K\n",
"Unpacking objects: 100% (26/26), 28.10 KiB | 4.68 MiB/s, done.\n"
]
}
],
"source": [
"''' add Extensions here'''\n",
"%cd -q ~/asd/extensions\n",
"!git clone https://github.com/portu-sim/sd-webui-bmab.git\n",
"!git clone https://github.com/etherealxx/batchlinks-webui.git\n",
"!git clone https://github.com/AlUlkesh/sd_dpmpp_sde_no_random/ extensions/sd_dpmpp_sde_no_random\n",
"!git clone https://github.com/ahgsql/StyleSelectorXL\n",
"!git clone https://github.com/hako-mikan/sd-webui-lora-block-weight.git\n",
"!git clone https://github.com/richrobber2/canvas-zoom.git\n",
"!git clone https://github.com/NoCrypt/batchlinks-addon.git\n",
"!git clone https://github.com/Coyote-A/ultimate-upscale-for-automatic1111.git\n",
"!git clone https://github.com/hako-mikan/sd-webui-regional-prompter.git\n",
"!git clone https://github.com/alemelis/sd-webui-ar.git\n",
"!git clone https://github.com/hnmr293/sd-webui-cutoff.git\n",
"!git clone https://github.com/pkuliyi2015/multidiffusion-upscaler-for-automatic1111.git\n",
"!git clone https://github.com/ljleb/sd-webui-neutral-prompt.git\n",
"!git clone https://github.com/lifeisboringsoprogramming/sd-webui-lora-masks.git\n",
"!git clone https://github.com/a2569875/stable-diffusion-webui-composable-lora.git\n",
"!git clone https://github.com/mix1009/model-keyword.git\n",
"!git clone https://github.com/hako-mikan/sd-webui-supermerger.git\n",
"!git clone https://github.com/mcmonkeyprojects/sd-dynamic-thresholding.git\n",
"!git clone https://github.com/wcde/sd-webui-refiner.git\n",
"!git clone https://github.com/light-and-ray/sd-webui-lcm-sampler.git\n",
"!git clone https://github.com/vladmandic/sd-extension-system-info.git\n",
"!git clone https://github.com/Extraltodeus/test_my_prompt.git\n",
"!git clone https://github.com/cheald/sd-webui-loractl.git\n",
"!git clone https://github.com/ilian6806/stable-diffusion-webui-state.git\n",
"!git clone https://github.com/hako-mikan/sd-webui-cd-tuner\n",
"!git clone https://github.com/Haoming02/sd-forge-couple.git\n",
"!git clone https://github.com/Haoming02/sd-webui-diffusion-cg\n",
"\n",
"\n",
"!git clone https://github.com/thomaseding/sd-webui-color-enhance.git\n",
"\n",
"!git clone https://github.com/AG-w/sd-webui-smea.git\n",
"!git clone https://github.com/Koishi-Star/Euler-Smea-Dyn-Sampler.git\n",
"!git clone https://github.com/ananosleep/advanced_euler_sampler_extension.git\n",
"!git clone https://github.com/dfl/comfyui-tcd-scheduler.git\n",
"\n",
"\n",
"!git clone https://github.com/klimaleksus/stable-diffusion-webui-fix-image-paste.git\n",
"!git clone https://github.com/klimaleksus/stable-diffusion-webui-embedding-merge.git\n",
"!git clone https://github.com/klimaleksus/stable-diffusion-webui-anti-burn.git\n",
"!git clone https://github.com/klimaleksus/stable-diffusion-webui-conditioning-highres-fix.git\n",
"!git clone https://github.com/klimaleksus/stable-diffusion-webui-batched-hires\n",
"!git clone https://github.com/klimaleksus/stable-diffusion-webui-disable-inpainting-overlay.git\n",
"!git clone https://github.com/klimaleksus/stable-diffusion-webui-giant-kitten.git\n",
"!git clone https://github.com/Zuellni/Stable-Diffusion-WebUI-Image-Filters.git\n",
"!git clone https://github.com/NoCrypt/inpaint-nav.git\n",
"!git clone https://github.com/ashen-sensored/stable-diffusion-webui-two-shot.git\n",
"!git clone https://github.com/ashen-sensored/sd_webui_masactrl.git\n",
"#!git clone https://github.com/ashen-sensored/sd_webui_SAG.git\n",
"\n",
"\n",
"\n",
"!git clone https://github.com/yoinked-h/yoinked-style-adder.git\n",
"!git clone https://github.com/ArtVentureX/sd-webui-agent-scheduler.git\n",
"!git clone https://github.com/ilian6806/stable-diffusion-webui-state\n",
"!git clone https://github.com/Yinzo/sd-webui-Lora-queue-helper.git\n",
"!git clone https://github.com/pamparamm/sd-webui-lora-uc\n",
"!git clone https://github.com/pamparamm/ComfyUI-AutomaticCFG.git\n",
"!git clone https://github.com/pamparamm/sd-perturbed-attention.git\n",
"!git clone https://github.com/WASasquatch/FreeU_Advanced.git\n",
"!git clone https://github.com/Extraltodeus/custom-sd-upscale.git\n",
"!git clone https://github.com/Extraltodeus/test_my_prompt.git\n",
"!git clone https://github.com/Extraltodeus/advanced-loopback-for-sd-webui.git\n",
"!git clone https://github.com/ljleb/prompt-fusion-extension.git\n",
"!git clone https://github.com/yownas/seed_travel.git\n",
"!git clone https://github.com/city96/SD-Latent-Upscaler.git\n",
"\n",
"\n",
"#!git clone https://github.com/vladmandic/sd-extension-chainner.git\n",
"!git clone https://github.com/Kahsolt/stable-diffusion-webui-lora-zip.git\n",
"!git clone https://github.com/Inzaniak/sd-webui-ranbooru.git\n",
"!git clone https://github.com/Inzaniak/comfyui-ranbooru.git\n",
"!git clone https://github.com/Inzaniak/sd-webui-workflow.git\n",
"!git clone https://github.com/PurpleBlueAloeVera/aloe-promptifier.git\n",
"!git clone https://github.com/Kahsolt/stable-diffusion-webui-vae-tile-infer.git\n",
"!git clone https://github.com/Kahsolt/stable-diffusion-webui-sonar.git\n",
"!git clone https://github.com/Kahsolt/stable-diffusion-webui-hires-fix-progressive.git\n",
"!git clone https://github.com/alexblattner/modified-euler-samplers-for-sonar-diffusers.git\n",
"!git clone https://github.com/Kahsolt/stable-diffusion-webui-size-travel\n",
"!git clone https://github.com/opparco/stable-diffusion-webui-sched.git\n",
"!git clone https://github.com/opparco/stable-diffusion-webui-latent-correction.git\n",
"#!git clone https://github.com/kohya-ss/sd-webui-controlnet-lora.git\n",
"!git clone https://github.com/Mikubill/sd-paint-with-words\n",
"!git clone https://github.com/ljleb/sd-webui-scalecrafter.git\n",
"!git clone https://github.com/YingqingHe/ScaleCrafter\n",
"!git clone https://github.com/hako-mikan/sd-webui-negpip.git\n",
"!git clone https://github.com/hako-mikan/sd-webui-prevent-artifact.git\n",
"!git clone https://github.com/hako-mikan/sd-webui-xyzplot-preset.git\n",
"!git clone https://github.com/muerrilla/stable-diffusion-NPW\n",
"!git clone https://github.com/muerrilla/stable-diffusion-Latentshop.git\n",
"!git clone https://github.com/kousw/stable-diffusion-webui-daam.git\n",
"!git clone https://github.com/SusungHong/Self-Attention-Guidance\n",
"!git clone https://github.com/Haoming02/sd-webui-diffusion-cg.git\n",
"!git clone https://github.com/AlUlkesh/sd_grid_add_image_number.git\n",
"!git clone https://github.com/richrobber2/canvas-zoom.git\n",
"!git clone https://github.com/ljleb/sd-webui-freeu.git\n",
"!git clone https://github.com/ljleb/SD-latent-mirroring.git\n",
"!git clone https://github.com/dfaker/embedding-to-png-script.git\n",
"!git clone https://github.com/ljleb/sd-webui-batch-loopback.git\n",
"!git clone https://github.com/Haoming02/sd-webui-vectorscope-cc.git\n",
"!git clone https://github.com/SLAPaper/sd-webui-pag.git\n",
"!git clone https://github.com/v0xie/sd-webui-incantations.git\n",
"!git clone https://github.com/SLAPaper/StableDiffusion-dpmpp_2m_alt-Sampler.git\n",
"!git clone https://github.com/SLAPaper/asymmetric-tiling-sd-webui.git\n",
"!git clone https://github.com/SLAPaper/sd-webui-sdxl-latent-tweaking.git\n",
"!git clone https://github.com/SLAPaper/sd-forge-layerdiffusion\n",
"#!git clone https://github.com/SLAPaper/sd_webui_SAG.git\n",
"\n",
"!git clone https://github.com/Haoming02/sd-webui-mosaic-outpaint\n",
"!git clone https://github.com/Haoming02/sd-webui-curtains\n",
"!git clone https://github.com/Haoming02/sd-webui-resharpen\n",
"!git clone https://github.com/Haoming02/sd-webui-image-comparison\n",
"!git clone https://github.com/Haoming02/sd-webui-prompt-format\n",
"!git clone https://github.com/Haoming02/sd-webui-auto-res.git\n",
"!git clone https://github.com/CodeZombie/latentcoupleregionmapper.git\n",
"!git clone https://github.com/hnmr293/ssasd.git\n",
"!git clone https://github.com/hnmr293/sd-webui-evviz2\n",
"!git clone https://github.com/hnmr293/sd-webui-xl_vec.git\n",
"!git clone https://github.com/hnmr293/sd-webui-reactivity.git\n",
"!git clone https://github.com/hnmr293/stable-diffusion-webui-tripclipskip.git\n",
"!git clone https://github.com/hnmr293/sd-webui-matview.git\n",
"!git clone https://github.com/hnmr293/sd-webui-llul.git\n",
"!git clone https://github.com/hnmr293/sd-webui-dycfg.git\n",
"!git clone https://github.com/hnmr293/ComfyUI-nodes-hnmr.git\n",
"!git clone https://github.com/wcde/sd-webui-kohya-hiresfix.git\n",
"!git clone https://github.com/wcde/custom-hires-fix-for-automatic1111.git\n",
"!git clone https://github.com/lihaoyun6/sd-webui-Hires-fix-Plus.git\n",
"#!git clone https://github.com/lihaoyun6/sd-webui-DFLAME.git\n",
"!git clone https://github.com/lihaoyun6/sd-webui-Blind-Watermark\n",
"!git clone https://github.com/w-e-w/sd-webui-hires-fix-tweaks.git\n",
"!git clone https://github.com/w-e-w/sd-webui-xyz-addon.git\n",
"!git clone https://github.com/w-e-w/sd-webui-expanded-xyz-plot.git\n",
"!git clone https://github.com/w-e-w/sd-webui-token-downsampling.git\n",
"!git clone https://github.com/AG-w/sd-webui-todo.git\n",
"!git clone https://github.com/feffy380/sd-webui-perturbed-attention-guidance.git\n",
"!git clone https://github.com/w-e-w/sd-webui-infotext-example.git\n",
"!git clone https://github.com/feffy380/prompt-morph.git\n",
"!git clone https://github.com/AG-w/sd_webui_SAG.git\n",
"\n",
"\n",
"!git clone https://github.com/light-and-ray/sd-webui-old-sd-firstpasser.git\n",
"!git clone https://github.com/light-and-ray/sd-webui-cli-interruption.git\n",
"!git clone https://github.com/new-sankaku/stable-diffusion-webui-simple-manga-maker.git\n",
"#!git clone https://github.com/light-and-ray/sd-webui-cn-in-extras-tab.git\n",
"!git clone https://github.com/light-and-ray/sd-webui-color-correction-extras.git\n",
"!git clone https://github.com/light-and-ray/sd-webui-gray-violet-primary-color.git\n",
"#!git clone https://github.com/light-and-ray/sd-webui-replacer.git\n",
"!git clone https://github.com/Carzit/sd-webui-samplers-scheduler.git\n",
"!git clone https://github.com/John-WL/sd-webui-inpaint-background.git\n",
"!git clone https://github.com/John-WL/sd-webui-mask-fractioner.git\n",
"!git clone https://github.com/John-WL/sd-webui-inpaint-difference\n",
"!git clone https://github.com/John-WL/sd-webui-alpha-mask\n",
"!git clone https://github.com/w-e-w/stable-diffusion-webui-GPU-temperature-protection.git\n",
"!git clone https://github.com/w-e-w/embedding-inspector.git\n",
"!git clone https://github.com/p1atdev/stable-diffusion-webui-adverse-cleaner-tab.git\n",
"!git clone https://github.com/diegocr/stable-diffusion-webui-electron.git\n",
"!git clone https://github.com/p1atdev/sd-danbooru-tags-upsampler.git\n",
"!git clone https://github.com/h43lb1t0/sd-webui-sdxl-refiner-hack.git\n",
"!git clone https://github.com/h43lb1t0/SD-WebUI-BatchCheckpointPrompt\n",
"!git clone https://github.com/Filexor/DeepShrinkHires.fix.git\n",
"!git clone https://github.com/feynlee/latent-upscale.git\n",
"!git clone https://github.com/Haoming02/sd-webui-tabs-extension.git\n",
"!git clone https://github.com/Haoming02/sd-webui-aaa.git\n",
"!git clone https://github.com/Haoming02/sd-webui-moar-generate.git\n",
"!git clone https://github.com/blue-pen5805/sdweb-easy-generate-forever.git\n",
"!git clone https://github.com/Haoming02/sd-webui-dynamic-hdr.git\n",
"!git clone https://github.com/blue-pen5805/sdweb-easy-wheel-edit-attention.git\n",
"!git clone https://github.com/v0xie/sd-webui-cads.git\n",
"\n",
"\n",
"!git clone https://github.com/space-nuko/a1111-stable-diffusion-webui-vram-estimator.git\n",
"!git clone https://github.com/lisanet/sd-webui-sdxl-aspects.git\n",
"!git clone https://github.com/mcmonkeyprojects/sd-infinity-grid-generator-script.git\n",
"!git clone https://github.com/Linaqruf/sdxl-model-converter.git\n",
"!git clone https://github.com/yownas/prompt_mixer.git\n",
"!git clone https://github.com/yownas/shift-attention.git\n",
"!git clone https://github.com/yownas/sd-webui-lua.git\n",
"!git clone https://github.com/guzuligo/CFG-Schedule-for-Automatic1111-SD.git\n",
"!git clone https://github.com/KohakuBlueleaf/a1111-sd-webui-haku-img.git\n",
"!git clone https://github.com/KohakuBlueleaf/z-a1111-sd-webui-dtg.git\n",
"!git clone https://github.com/OedoSoldier/sd-webui-image-sequence-toolkit.git\n",
"!git clone https://github.com/antis0007/sd-webui-multiple-hypernetworks.git\n",
"!git clone https://github.com/antis0007/sd-webui-colorful-noise.git\n",
"!git clone https://github.com/antis0007/sd-webui-gelbooru-prompt.git\n",
"!git clone https://github.com/benkyoujouzu/stable-diffusion-webui-visualize-cross-attention-extension.git\n",
"\n",
"\n",
"!git clone https://github.com/Zyin055/Config-Presets\n",
"!git clone https://github.com/AIrjen/OneButtonPrompt.git\n",
"!git clone https://github.com/Kahsolt/stable-diffusion-webui-prompt-travel.git\n",
"!git clone https://github.com/pkuliyi2015/multidiffusion-img-demo.git\n",
"!git clone https://github.com/udon-universe/stable-diffusion-webui-extension-templates.git\n",
"!git clone https://github.com/lisanet/sdxl-webui-refiner-fixed.git\n",
"!git clone https://github.com/osi1880vr/prompt_quill.git\n",
"!git clone https://github.com/Siberpone/ponyverse.git\n",
"!git clone https://github.com/Siberpone/lazy-pony-prompter\n",
"!git clone https://github.com/Siberpone/pd-styles.git\n",
"!git clone https://github.com/Siberpone/derpi-tac-a1111.git\n",
"!git clone https://github.com/ZealousMagician/Ponymaster.git\n",
"!git clone https://github.com/uwidev/sd_extension-prompt_formatter.git\n",
"!git clone https://github.com/layerdiffusion/sd-forge-layerdiffuse.git\n",
"!git clone https://github.com/ahgsql/StyleSelectorXL.git\n",
"\n",
"!git clone https://github.com/benkyoujouzu/stable-diffusion-webui-print-processed-prompt-extension.git\n",
"#!git clone https://github.com/AlUlkesh/sd_search_model.git\n",
"!git clone https://github.com/neggles/sd-webui-docker.git\n",
"!git clone https://github.com/ahgsql/sd-outpainting-server.git\n",
"!git clone https://github.com/space-nuko/sd-tagging-helper\n",
"!git clone https://github.com/space-nuko/a1111-stable-diffusion-webui-randomizer-keywords\n",
"#!git clone https://github.com/space-nuko/sd-promptbook\n",
"\n",
"\n",
"!git clone https://github.com/Blu-Tiger/sd-webui-real-image-artifacts.git\n",
"!git clone https://github.com/omniinfer/sd-webui-cloud-inference.git\n",
"!git clone https://github.com/shirayu/sd-webui-enable-checker.git\n",
"!git clone https://github.com/kenning/sd-webui-noise-color-picker.git\n",
"!git clone https://github.com/nihedon/sd-webui-weight-helper.git\n",
"!git clone https://github.com/light-and-ray/sd-webui-lama-cleaner-masked-content.git\n",
"!git clone https://github.com/v0xie/sd-webui-agentattention.git\n",
"!git clone https://github.com/rauldlnx10/sd-webui-promptmaker.git\n",
"!git clone https://github.com/safubuki/sd-webui-latent-regional-helper.git\n",
"#!git clone https://github.com/leeguandong/sd_webui_matting.git\n",
"!git clone https://github.com/v0xie/sd-webui-semantic-guidance.git\n",
"!git clone https://github.com/licyk/advanced_euler_sampler_extension.git\n",
"!git clone https://github.com/licyk/sd-webui-tcd-sampler.git\n",
"!git clone https://github.com/famotime/AIGC_helper.git\n",
"!git clone https://github.com/SenshiSentou/sd-webui-cardmaster.git\n",
"!git clone https://github.com/denfrost/sd-webui-img2txt.git\n",
"!git clone https://github.com/123jimin/sd-webui-system-control\n",
"!git clone https://github.com/123jimin/sd-prompt-parser.git\n",
"!git clone https://github.com/Iniquitatis/sd-webui-temporal.git\n",
"!git clone https://github.com/dvruette/sd-webui-fabric.git\n",
"!git clone https://github.com/ogkalu2/Merge-Stable-Diffusion-models-without-distortion.git\n",
"!git clone https://github.com/nochnoe/sd-webui-e621-prompt.git\n",
"!git clone https://github.com/thundaga/SD-webui-txt2img-script.git\n",
"!git clone https://github.com/tritant/sd-webui-creaprompt.git\n",
"!git clone https://github.com/leeguandong/sd_webui_sghm.git\n",
"\n",
"!git clone https://github.com/grim-reapper/aci-sd-webui-civitai-models\n",
"!git clone https://github.com/acorderob/sd-webui-prompt-postprocessor\n",
"!git clone https://github.com/SirVeggie/extension-style-vars.git\n",
"!git clone https://github.com/Tencent/LightDiffusionFlow.git\n",
"!git clone https://github.com/groinge/sd-webui-clipreplacer.git\n",
"!git clone https://github.com/groinge/sd-webui-untitledmerger\n",
"!git clone https://github.com/Ma-Chang-an/sd-webui-python-module-install.git\n",
"!git clone https://github.com/leeguandong/sd_webui_realtime_lcm_canvas\n",
"!git clone https://github.com/rumangerst/sd-webui-sdxl-size-panel.git\n",
"!git clone https://github.com/rumangerst/sd-webui-sdxl-styles-panel.git\n",
"!git clone https://github.com/MirrorCY/sd-switch.git\n",
"!git clone https://github.com/guinoise/sd-webui-generation-organizer.git\n",
"!git clone https://github.com/wkpark/sd-webui-pnginfo-diff.git\n",
"!git clone https://github.com/miamnh/sd-webui-model-downloader-cn\n",
"!git clone https://github.com/ronghuaxueleng/sd-webui-prompt-templates.git\n",
"!git clone https://github.com/Blastdav/sd-webui-e621-grabber.git\n",
"!git clone https://github.com/junha-lee/sd-webui-crop-extension.git\n",
"!git clone https://github.com/songweige/sd-webui-rich-text.git\n",
"!git clone https://github.com/junha-lee/sd-webui-lineart-extension.git\n",
"!git clone https://github.com/GreyManZA/sd-webui-upscale-extended.git\n",
"!git clone https://github.com/n714/sd-webui-generate-button.git\n",
"!git clone https://github.com/rocketgarden/sd-civitai-url-helper.git\n",
"!git clone https://github.com/SuspiciousActivity/sd-webui-format-prompt.git\n",
"!git clone https://github.com/rumor9999/sd-webui-split-prompt.git\n",
"!git clone https://github.com/SuspiciousActivity/sd-webui-intersync.git\n",
"!git clone https://github.com/S-Del/sd-webui-toggle-monospace-prompts.git\n",
"!git clone https://github.com/ostris/sd-webui-middleware.git\n",
"\n",
"\n",
"!git clone https://github.com/propapanda/sd-webui-global-prompts\n",
"!git clone https://github.com/thomasasfk/sd-webui-aspect-ratio-helper.git\n",
"!git clone https://github.com/marhensa/sd15-recommended-res-calc.git\n",
"!git clone https://github.com/iiiytn1k/sd-webui-check-tensors.git\n",
"!git clone https://github.com/marhensa/sdxl-recommended-res-calc\n",
"!git clone https://github.com/marhensa/sd15-recommended-res-calc\n",
"!git clone https://github.com/Extraltodeus/custom-sd-upscale.git\n",
"!git clone https://github.com/Seshelle/diffusion-noise-alternatives-webui!git clone https://github.com/Seshelle/CFG_Rescale_webui\n",
"!git clone https://github.com/Seshelle/CFG_Rescale_webui\n",
"!git clone https://github.com/feffy380/prompt-morph.git\n",
"!git clone https://github.com/veyDer/embedding-inspector.git\n",
"!git clone https://github.com/KutsuyaYuki/ABG_extension.git\n",
"!git clone https://github.com/zhouyi311/Prompts-From-File-v2-for-a111s-SD-webui.git\n",
"!git clone https://github.com/zhouyi311/Prompts-From-File-v2-for-a111s-SD-webui.git\n",
"!git clone https://github.com/apximax/sd-webui-resscaler.git\n",
"!git clone https://github.com/Tsukreya/sd-webui-cfgs.git\n",
"!git clone https://github.com/official-elinas/sd-webui-latent-script.git\n",
"!git clone https://github.com/ClashSAN/unload-button.git\n",
"#!git clone https://github.com/gogodr/sd-webui-stopmotion.git\n",
"!git clone https://github.com/LonicaMewinsky/sd-webui-keyframer.git\n",
"!git clone https://github.com/gogodr/AdverseCleanerExtension.git\n",
"!git clone https://github.com/EugeoSynthesisThirtyTwo/prompt-interpolation-script-for-sd-webui.git\\\n",
"\n",
"!git clone https://github.com/wbclark/sd-webui-neutral-prompt\n",
"!git clone https://github.com/COFI92/neutral-prompt\n",
"''' add VAE here'''\n",
"%cd -q ~/asd/models/VAE\n",
"# %download https://huggingface.co/NoCrypt/resources/resolve/main/VAE/any.vae.safetensors any.vae.safetensors\n",
"%download https://huggingface.co/hakurei/waifu-diffusion-v1-4/resolve/main/vae/kl-f8-anime2.ckpt\n",
"''' add Embeddings here'''\n",
"%cd -q ~/asd/embeddings\n",
"# %download URL"
]
},
{
"cell_type": "code",
"execution_count": 13,
"id": "6db926c7-5e1f-4c69-85a7-37067c5d91d4",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" [#741b25 326MiB/385MiB(84%) CN:16 DL:347MiB] \n",
" 741b25|OK | 349MiB/s|/home/studio-lab-user/asd/models/VAE/kl-f8-anime2.ckpt\n"
]
}
],
"source": [
"%cd -q ~/asd/models/VAE\n",
"# %download https://huggingface.co/NoCrypt/resources/resolve/main/VAE/any.vae.safetensors any.vae.safetensors\n",
"%download https://huggingface.co/hakurei/waifu-diffusion-v1-4/resolve/main/vae/kl-f8-anime2.ckpt"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "3d57fba2-cdb5-46d3-9946-f0c8e3adee27",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Cloning into 'sd-webui-samplers-scheduler'...\n",
"remote: Enumerating objects: 245, done.\u001b[K\n",
"remote: Counting objects: 100% (168/168), done.\u001b[K\n",
"remote: Compressing objects: 100% (135/135), done.\u001b[K\n",
"remote: Total 245 (delta 78), reused 84 (delta 31), pack-reused 77\u001b[K\n",
"Receiving objects: 100% (245/245), 6.83 MiB | 19.26 MiB/s, done.\n",
"Resolving deltas: 100% (89/89), done.\n"
]
}
],
"source": [
"%cd -q ~/asd/extensions\n",
"!git clone https://github.com/Carzit/sd-webui-samplers-scheduler.git"
]
},
{
"cell_type": "code",
"execution_count": 14,
"id": "daeb077e-4c6c-4c84-a461-d321fe7755bb",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Cloning into 'neutral-prompt'...\n",
"remote: Enumerating objects: 387, done.\u001b[K\n",
"remote: Counting objects: 100% (387/387), done.\u001b[K\n",
"remote: Compressing objects: 100% (141/141), done.\u001b[K\n",
"remote: Total 387 (delta 199), reused 387 (delta 199), pack-reused 0\u001b[K\n",
"Receiving objects: 100% (387/387), 74.37 KiB | 5.31 MiB/s, done.\n",
"Resolving deltas: 100% (199/199), done.\n"
]
}
],
"source": [
"%cd -q ~/asd\n",
"#!git clone https://github.com/wbclark/sd-webui-neutral-prompt\n",
"!git clone https://github.com/COFI92/neutral-prompt"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "b50c0556-a8f7-4638-95c0-eb4049449679",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" 34f3d9|OK | 417MiB/s|/home/studio-lab-user/asd/models/VAE/any.vae.safetensors\n"
]
}
],
"source": [
"%cd -q ~/asd/models/VAE\n",
"%download https://huggingface.co/NoCrypt/resources/resolve/main/VAE/any.vae.safetensors any.vae.safetensors"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "6910ec0c-b7fb-4054-8a9e-f2c105a3c546",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"EEEEE\n",
"======================================================================\n",
"ERROR: test_face_restorers (unittest.loader._FailedTest)\n",
"----------------------------------------------------------------------\n",
"ImportError: Failed to import test module: test_face_restorers\n",
"Traceback (most recent call last):\n",
" File \"/home/studio-lab-user/.conda/envs/default/lib/python3.10/unittest/loader.py\", line 436, in _find_test_path\n",
" module = self._get_module_from_name(name)\n",
" File \"/home/studio-lab-user/.conda/envs/default/lib/python3.10/unittest/loader.py\", line 377, in _get_module_from_name\n",
" __import__(name)\n",
" File \"/home/studio-lab-user/asd/test/test_face_restorers.py\", line 2, in <module>\n",
" from test.conftest import test_files_path, test_outputs_path\n",
" File \"/home/studio-lab-user/asd/test/conftest.py\", line 4, in <module>\n",
" import pytest\n",
"ModuleNotFoundError: No module named 'pytest'\n",
"\n",
"\n",
"======================================================================\n",
"ERROR: test_img2img (unittest.loader._FailedTest)\n",
"----------------------------------------------------------------------\n",
"ImportError: Failed to import test module: test_img2img\n",
"Traceback (most recent call last):\n",
" File \"/home/studio-lab-user/.conda/envs/default/lib/python3.10/unittest/loader.py\", line 436, in _find_test_path\n",
" module = self._get_module_from_name(name)\n",
" File \"/home/studio-lab-user/.conda/envs/default/lib/python3.10/unittest/loader.py\", line 377, in _get_module_from_name\n",
" __import__(name)\n",
" File \"/home/studio-lab-user/asd/test/test_img2img.py\", line 2, in <module>\n",
" import pytest\n",
"ModuleNotFoundError: No module named 'pytest'\n",
"\n",
"\n",
"======================================================================\n",
"ERROR: test_torch_utils (unittest.loader._FailedTest)\n",
"----------------------------------------------------------------------\n",
"ImportError: Failed to import test module: test_torch_utils\n",
"Traceback (most recent call last):\n",
" File \"/home/studio-lab-user/.conda/envs/default/lib/python3.10/unittest/loader.py\", line 436, in _find_test_path\n",
" module = self._get_module_from_name(name)\n",
" File \"/home/studio-lab-user/.conda/envs/default/lib/python3.10/unittest/loader.py\", line 377, in _get_module_from_name\n",
" __import__(name)\n",
" File \"/home/studio-lab-user/asd/test/test_torch_utils.py\", line 3, in <module>\n",
" import pytest\n",
"ModuleNotFoundError: No module named 'pytest'\n",
"\n",
"\n",
"======================================================================\n",
"ERROR: test_txt2img (unittest.loader._FailedTest)\n",
"----------------------------------------------------------------------\n",
"ImportError: Failed to import test module: test_txt2img\n",
"Traceback (most recent call last):\n",
" File \"/home/studio-lab-user/.conda/envs/default/lib/python3.10/unittest/loader.py\", line 436, in _find_test_path\n",
" module = self._get_module_from_name(name)\n",
" File \"/home/studio-lab-user/.conda/envs/default/lib/python3.10/unittest/loader.py\", line 377, in _get_module_from_name\n",
" __import__(name)\n",
" File \"/home/studio-lab-user/asd/test/test_txt2img.py\", line 2, in <module>\n",
" import pytest\n",
"ModuleNotFoundError: No module named 'pytest'\n",
"\n",
"\n",
"======================================================================\n",
"ERROR: test_utils (unittest.loader._FailedTest)\n",
"----------------------------------------------------------------------\n",
"ImportError: Failed to import test module: test_utils\n",
"Traceback (most recent call last):\n",
" File \"/home/studio-lab-user/.conda/envs/default/lib/python3.10/unittest/loader.py\", line 436, in _find_test_path\n",
" module = self._get_module_from_name(name)\n",
" File \"/home/studio-lab-user/.conda/envs/default/lib/python3.10/unittest/loader.py\", line 377, in _get_module_from_name\n",
" __import__(name)\n",
" File \"/home/studio-lab-user/asd/test/test_utils.py\", line 1, in <module>\n",
" import pytest\n",
"ModuleNotFoundError: No module named 'pytest'\n",
"\n",
"\n",
"----------------------------------------------------------------------\n",
"Ran 5 tests in 0.000s\n",
"\n",
"FAILED (errors=5)\n"
]
}
],
"source": [
"!python -m unittest discover test"
]
},
{
"cell_type": "markdown",
"id": "0a0d2b52-763f-4002-ad88-1d4d8fcfded9",
"metadata": {
"tags": []
},
"source": [
"#### *Persistent*"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "a95d3607-519e-48ae-87e6-92e2e816dcf5",
"metadata": {},
"outputs": [],
"source": [
"''' Checkpoint '''\n",
"%cd -q ~/asd/models/Stable-diffusion\n",
"%download https://civitai.com/api/download/models/147913 meichidarkMixFp16_45.safetensors\n",
"\n",
"''' LoRA '''\n",
"%cd -q ~/asd/models/Lora\n",
"%download https://civitai.com/api/download/models/87153 add_detail.safetensors\n",
"%download https://civitai.com/api/download/models/171989 detail_slider_v4.safetensors\n",
"%download https://civitai.com/api/download/models/62833 Detail_Tweaker.safetensors\n",
"%download https://civitai.com/api/download/models/86247 flat2.safetensors"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "06a39e28-17de-4954-b6bc-f22baed0f269",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Requirement already satisfied: wget in /home/studio-lab-user/.conda/envs/default/lib/python3.10/site-packages (3.2)\n",
" [#0a5f46 10GiB/10GiB(98%) CN:16 DL:414MiB] \n",
" 0a5f46|OK | 428MiB/s|/tmp/models/pornmasterAnime_v5.safetensors\n",
" [#fb94c5 1.6GiB/1.9GiB(85%) CN:16 DL:453MiB] \n",
" fb94c5|OK | 450MiB/s|/tmp/models/VividOrangeMix.safetensors\n"
]
}
],
"source": [
"%tempe\n",
"%cd -q ~/asd/models/Stable-diffusion/tmp_models\n",
"!pip install wget\n",
"#https://civitai.com/api/download/models/55199\n",
"\n",
"#%download https://civitai.com/api/download/models/453692?type=Model&format=PickleTensor&size=full&fp=fp32\n",
"#!gdown \"https://huggingface.co/declun/pornmaster-animev4/resolve/main/pornmasterAnime_v4.safetensors\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/PornMaster-Anime.safetensors\"\n",
"#!gdown \"https://huggingface.co/dikdimon/sac/resolve/main/pornmasterAnime_v5.safetensors\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/pornmasterAnime_v5.safetensors\"\n",
"\n",
"#!gdown \"https://huggingface.co/dikdimon/sac/resolve/main/Mistoon_Pearl.safetensors\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Mistoon_Pearl.safetensors\"\n",
"#!gdown \"https://civitai.com/api/download/models/348981\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Mistoon_Anime.safetensors\"\n",
"#!gdown \"https://huggingface.co/dikdimon/sac/resolve/main/archangelbreed_v60.safetensors\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/archangelbreed_v60.safetensors\"\n",
"#!gdown \"https://huggingface.co/dikdimon/sac/resolve/main/autismmixSDXL_autismmixPony.safetensors\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/autismmixSDXL_autismmixPony.safetensors\"\n",
"\n",
"\n",
"#!gdown \"https://huggingface.co/dikdimon/sac/resolve/main/pornmasterAnime_v4-inpainting.safetensors\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/pornmasterAnime_v4-inpainting.safetensors\"\n",
"#!gdown \"https://huggingface.co/cagliostrolab/animagine-xl-3.0/resolve/main/animagine-xl-3.0.safetensors\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Animagine_XL_V3.safetensors\"\n",
"#!gdown \"https://huggingface.co/declun/pornmaster-animev4/resolve/main/pornmasterAnime_v4.safetensors\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/PornMaster-Anime.safetensors\"\n",
"#!curl -Lo \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/PornMaster-Anime.safetensors\" \"https://civitai.com/api/download/models/280908?type=Model&format=SafeTensor&size=full&fp=fp32\"\n",
"#!gdown \"https://civitai.com/api/download/models/41233?type=Model&format=SafeTensor&size=full&fp=fp16\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/anyhentai.safetensors\"\n",
"#!gdown \"https://civitai.com/api/download/models/158321?type=Model&format=SafeTensor&size=full&fp=fp32\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/HazyAbyss.safetensors\"\n",
"#!gdown \"https://civitai.com/api/download/models/144671?type=Model&format=SafeTensor&size=full&fp=fp16\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Takeda Hiromitsu style.safetensors\"\n",
"#!wget -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/RaemuMix.safetensors\" \"https://civitai.com/api/download/models/294902\"\n",
"\n",
"#!gdown \"https://civitai.com/api/download/models/294902\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/RaemuMix.safetensors\"\n",
"#!gdown \"https://huggingface.co/stb/animelike2d/resolve/main/animelike25D_animelike25DV11Pruned.safetensors\" -O \"animelike25D_animelike25DV11Pruned.safetensors\"\n",
"#!gdown \"https://civitai.com/api/download/models/221033?type=Model&format=SafeTensor&size=pruned&fp=fp16\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/vivid.safetensors\"\n",
"#!gdown \"https://civitai.com/api/download/models/46846?type=Model&format=SafeTensor&size=full&fp=fp32\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/rev.safetensors\"\n",
"#!curl -Lo \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/yesmixV3.5.safetensors\" \"https://civitai.com/api/download/models/182252?type=Model&format=SafeTensor&size=pruned&fp=fp16\"\n",
"#!gdown \"https://civitai.com/api/download/models/25571?type=Model&format=SafeTensor&size=full&fp=fp16\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/yesmix16.safetensors\"\n",
"#gdown https://civitai.com/models/9139?modelVersionId=182252 -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/yesmix35.safetensors\"\n",
"#!curl -Lo \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Counterfeit-V3.0.safetensors\" \"https://huggingface.co/gsdf/Counterfeit-V3.0/resolve/main/Counterfeit-V3.0.safetensors\"\n",
"#!curl -Lo \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/zedmix.safetensors\" \"https://civitai.com/api/download/models/121922?type=Model&format=SafeTensor&size=full&fp=fp16\"\n",
"#!curl -Lo \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Based66-V3.safetensors\" \"https://huggingface.co/AnonymousM/Based-mixes/resolve/main/Based66-V3.safetensors\"\n",
"#!curl -Lo \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Hassaku XL (sfw&nsfw) betaAOM3B2_orangemixs.safetensors\" \"https://civitai.com/api/download/models/251889?type=Model&format=SafeTensor&size=pruned&fp=bf16\"\n",
"#!gdown \"https://civitai.com/api/download/models/247131?type=Model&format=SafeTensor&size=pruned&fp=fp16\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Hentai Mix XL - Road to freedom.safetensors\"\n",
"#!gdown \"https://civitai.com/api/download/models/232266?type=Model&format=SafeTensor&size=pruned&fp=fp32\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Hardcore - Hentai.safetensors\"\n",
"#!gdown \"https://civitai.com/api/download/models/29173?type=Model&format=SafeTensor&size=full&fp=fp16\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Грейпфрут (хентай-модель).safetensors\"\n",
"#!gdown \"https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix2/AbyssOrangeMix2_hard.safetensors\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/AbyssOrangeMix2_hard.safetensors\"\n",
"#!gdown \"https://civitai.com/api/download/models/6087?type=Model&format=SafeTensor&size=full&fp=fp16\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Котосмикс.safetensors\"\n",
"#!gdown \"https://huggingface.co/X779/Anything_ink/resolve/main/Anything-ink.safetensors\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Anything-ink.safetensors\"\n",
"#!gdown \"https://civitai.com/api/download/models/5581?type=Model&format=PickleTensor&size=full&fp=fp16\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/anuthinkv4.safetensors\"\n",
"\n",
"\n",
"#!curl -Lo \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/vivid_nsfw.safetensors\" \"https://civitai.com/api/download/models/251011?type=Model&format=SafeTensor&size=pruned&fp=fp16\"\n",
"#!curl -Lo \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/vivid_hard.safetensors\" \"https://civitai.com/api/download/models/251053?type=Model&format=SafeTensor&size=pruned&fp=fp16\"\n",
"#!gdown \"https://civitai.com/api/download/models/83109?type=Model&format=SafeTensor&size=full&fp=fp16\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/cartoon.safetensors\"\n",
" \n",
"\n",
"#!curl -Lo \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Hassaku (hentai model).safetensors\" \"https://civitai.com/api/download/models/106922?type=Model&format=SafeTensor&size=pruned&fp=fp16\"\n",
"#!gdown \"https://civitai.com/api/download/models/206386?type=Model&format=SafeTensor&size=full&fp=fp16\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Hentai mix.safetensors\"\n",
"#!gdown \"https://civitai.com/api/download/models/49339\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Hentai17.safetensors\"\n",
"#!curl -Lo \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/AOM3B2_orangemixs.safetensors\" \"https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix3/AOM3B2_orangemixs.safetensors\"\n",
"#!curl -Lo \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/AOM3B4_orangemixs.safetensors\" \"https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix3/AOM3B4_orangemixs.safetensors\"\n",
"#!curl -Lo \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Corneo's 7th Heaven Mix.safetensors\" \"https://civitai.com/api/download/models/6878?type=Model&format=SafeTensor&size=full&fp=fp16\"\n",
"#!curl -Lo \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/AnyLoRA - Checkpoint.safetensors\" \"https://civitai.com/api/download/models/95489?type=Model&format=SafeTensor&size=full&fp=fp16\"\n",
"#!curl -Lo \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/rev.safetensors\" \"https://civitai.com/api/download/models/46846?type=Model&format=SafeTensor&size=full&fp=fp32\"\n",
"#!wget -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/YesMix.safetensors\" \"https://civitai.com/api/download/models/182252?type=Model&format=SafeTensor&size=pruned&fp=fp16\"\n",
"#!wget -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/【Checkpoint】YesMix.safetensors\" \"https://civitai.com/api/download/models/25571?type=Model&format=SafeTensor&size=full&fp=fp16\"\n",
"#!gdown \"https://huggingface.co/AnonymousM/Based-mixes/resolve/main/Based66-V3.safetensors\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Based66-V3.safetensors\"\n",
"\n",
"#!gdown \"https://civitai.com/api/download/models/119057?type=Model&format=SafeTensor&size=pruned&fp=fp16\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/meina.safetensors\"\n",
"#!gdown \"https://huggingface.co/model5675/vividorangemix_v10_1/resolve/main/vividorangemix_v10Hard.safetensors\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/vividorangemix_v10Hard.safetensors\"\n",
"#!gdown \"https://huggingface.co/model5675/vividorangemix_v10_1/resolve/main/vividorangemix_v10NSFW.safetensors\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/vividorangemix_v10NSFW.safetensors\"\n",
"#!gdown \"https://huggingface.co/AnonymousM/Based-mixes/resolve/main/Based68-V2.safetensors\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/Based68-V22.safetensors\"\n",
"#!curl -Lo \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/cartoon.safetensors\" \"https://civitai.com/api/download/models/83109?type=Model&format=SafeTensor&size=full&fp=fp16\"\n",
"#!wget -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/rev707.safetensors\" \"https://civitai.com/api/download/models/247262?type=Model&format=SafeTensor&size=pruned&fp=fp16\"\n",
"#!gdown \"https://civitai.com/api/download/models/247262?type=Model&format=SafeTensor&size=pruned&fp=fp16\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/rev703.safetensors\"\n",
"#!gdown \"https://civitai.com/api/download/models/180346?type=Model&format=SafeTensor&size=pruned&fp=fp16\" -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/rev.safetensors\"\n",
"\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/pornmasterAnime_v5.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/pornmasterAnime_v5/pornmasterAnime_v5.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/furrytoonmix_v10/furrytoonmix_v10.safetensors\n",
"#%download https://huggingface.co/JujoHotaru/HotaruBreed/resolve/main/model/HotaruBreed_TypeE_v80.safetensors\n",
"#%download https://huggingface.co/AnonymousM/Based-mixes/resolve/main/Based66-V3.safetensors\n",
"#%download https://huggingface.co/JujoHotaru/CartoonBreed/resolve/main/model/CartoonBreed_v10A.safetensors\n",
"\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/archangelbreed_v60.safetensors archangelbreed_v60.safetensors\n",
"#%download https://huggingface.co/JujoHotaru/HotaruBreed/resolve/main/model/HotaruBreed_CuteMix_TypeD_v70.safetensors HotaruBreed_CuteMix_TypeD_v70.safetensors\n",
"#%download https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/VividOrangeMix/VividOrangeMix.safetensors VividOrangeMix.safetensors\n",
"#%download https://civitai.com/api/download/models/336110 Based69.safetensors\n",
"#!gdown \"https://huggingface.co/AnonymousM/Based-mixes/resolve/main/Based66-V3.safetensors\" -O \"/home/studio-lab-user/asd/models/Stable-diffusion/tmp_models/Based66-V3.safetensors\"\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/pornmasterAnime_v5.safetensors pornmasterAnime_v5.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/autismmixSDXL_autismmixPony.safetensors autismmixSDXL_autismmixPony.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/Mistoon_Pearl.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/archangelbreed_v60.safetensors archangelbreed_v60.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/pornmasterAnime_v5-inpainting.safetensors pornmasterAnime_v5-inpainting.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/pornmasterAnime_v3.safetensors pornmasterAnime_v3.safetensors\n",
"#%download https://civitai.com/api/download/models/29645 Dark_Sushi_Mix_darker.safetensors\n",
"#%download https://civitai.com/api/download/models/32465 Dark_Sushi_Mix_bright.safetensors\n",
"#%download https://huggingface.co/gsdf/Counterfeit-V3.0/resolve/main/Counterfeit-V3.0.safetensors Counterfeit-V3.0.safetensors\n",
"#!gdown \"https://civitai.com/api/download/models/29645\" -O \"/home/studio-lab-user/asd/models/Stable-diffusion/tmp_models/Dark_Sushi_Mix_darker.safetensors\"\n",
"#!gdown \"https://civitai.com/api/download/models/32465\" -O \"/home/studio-lab-user/asd/models/Stable-diffusion/tmp_models/Dark_Sushi_Mix_bright.safetensors\"\n",
"#!gdown \"https://huggingface.co/stb/animelike2d/resolve/main/animelike25D_animelike25DV11Pruned.safetensors\" -O \"animelike25D_animelike25DV11Pruned.safetensors\"\n",
"\n",
"\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/table-diffusion/mistoonEmerald_v30.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/table-diffusion/mistoonObsidian_v10.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/table-diffusion/mistoonRuby_v30.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/mistoonAnime_v30/mistoonAnime_v30.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/mistoonSapphire_v20.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/ble-diffusion/mistoonJade_v10Anime.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/Stable-diffusion/mistoonAmethyst_v20.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/Stable-diffusion/mistoonDiamond_v10.safetensors\n",
"\n",
"\n",
"#%download https://huggingface.co/DrBob2142/Midnight_Mixes/resolve/main/Midnight%20Maple.safetensors\n",
"#%download https://huggingface.co/DrBob2142/Midnight_Mixes/resolve/main/Midnight%20Mixer%20Melt.safetensors\n",
"#%download https://huggingface.co/DrBob2142/Midnight_Mixes/resolve/main/Midnight%20Melt.safetensors\n",
"\n",
"#%download https://huggingface.co/dikdimon/sac/blob/main/mightMixes15Ponyxl_pxlToonthick/mightMixes15Ponyxl_pxlToonthick.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/gzzdx_v10/gzzdx_v10.safetensors\n",
"#%download https://civitai.com/api/download/models/410257\n",
"#%download https://civitai.com/api/download/models/489295\n",
"%download https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/VividOrangeMix/VividOrangeMix.safetensors\n",
"#%download https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/VividOrangeMix/VividOrengeMix_Hard.safetensors\n",
"#%download https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/VividOrangeMix/VividOrengeMix_NSFW.safetensors\n",
"#!wget -O \"/home/studio-lab-user/stable-diffusion-webui/models/Stable-diffusion/tmp_models/rev707.safetensors\" \"https://civitai.com/api/download/models/247262?type=Model&format=SafeTensor&size=pruned&fp=fp16\""
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "a9306a56-03de-4521-86f4-e14e065b4e5f",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" [#4bb589 1.8GiB/1.9GiB(91%) CN:16 DL:214MiB] \n",
" 4bb589|OK | 211MiB/s|/tmp/models/Mistoon_Pearl.safetensors\n"
]
}
],
"source": [
"%tempe\n",
"%cd -q ~/asd/models/Stable-diffusion/tmp_models\n",
"%download https://huggingface.co/dikdimon/sac/resolve/main/Mistoon_Pearl.safetensors\n",
"%download https://huggingface.co/dikdimon/sac/resolve/main/ble-diffusion/mistoonJade_v10Anime.safetensors\n",
"%download https://civitai.com/api/download/models/379221\n",
"%download https://civitai.com/api/download/models/364898\n",
"%download https://civitai.com/api/download/models/89927\n",
"%download https://civitai.com/api/download/models/388436\n",
"%download https://huggingface.co/dikdimon/sac/resolve/main/gzzdx_v10/gzzdx_v10.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/mistoonAnime_v30/mistoonAnime_v30.safetensors\n",
"#%download https://huggingface.co/AnonymousM/Based-mixes/resolve/main/Based66-V3.safetensors\n",
"%download https://huggingface.co/dikdimon/sac/resolve/main/pornmasterAnime_v5/pornmasterAnime_v5.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/revAnimated_v2Rebirth/revAnimated_v2Rebirth.safetensors\n",
"#%download https://civitai.com/api/download/models/95489\n",
"#https://civitai.com/api/download/models/55199\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/pornmasterAnime_v5.safetensors\n",
"#!wget -O \"/home/studio-lab-user/asd/models/Stable-diffusion/tmp_models/pornmasterAnime_v5.safetensors\" \"https://civitai.com/api/download/models/432042?type=Model&format=SafeTensor&size=full&fp=fp32\"\n",
"#%download https://civitai.com/api/download/models/432042?type=Model&format=SafeTensor&size=full&fp=fp32\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/yiffymix_v43/yiffymix_v43.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/furrytoonmix_v10/furrytoonmix_v10.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/cutecandymix_v20/cutecandymix_v20.safetensors\n",
"#%download https://civitai.com/api/download/models/384706\n",
"#%download https://civitai.com/api/download/models/96319\n",
"#%download https://civitai.com/api/download/models/49690\n",
"#%download https://civitai.com/api/download/models/429527\n",
"#%download https://civitai.com/api/download/models/453692\n",
"#%download https://civitai.com/api/download/models/104198\n",
"#%download https://civitai.com/api/download/models/247262\n",
"#%download https://civitai.com/api/download/models/180346\n",
"#!pip install wget\n",
"#!wget -O \"/home/studio-lab-user/asd/models/Stable-diffusion/tmp_models/YiffyMix.safetensors\" \"https://civitai.com/api/download/models/453692?type=Model&format=SafeTensor&size=full&fp=fp32\""
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "cb038693-b15a-4fd8-ae60-760e1e612867",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" [#7ad017 6.4GiB/6.4GiB(99%) CN:9 DL:329MiB] \n",
" 7ad017|OK | 322MiB/s|/tmp/models/animeConfettiComrade_v3.safetensors\n"
]
}
],
"source": [
"%tempe\n",
"%cd -q ~/asd/models/Stable-diffusion/tmp_models\n",
"%download https://civitai.com/api/download/models/469115\n",
"%download https://civitai.com/api/download/models/386136\n",
"%download https://civitai.com/api/download/models/450146\n",
"%download https://civitai.com/api/download/models/315702\n",
"%download https://civitai.com/api/download/models/395263\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/mistoonAnime_v30/mistoonAnime_v30.safetensors\n",
"#%download https://huggingface.co/AnonymousM/Based-mixes/resolve/main/Based66-V3.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/pornmasterAnime_v5/pornmasterAnime_v5.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/revAnimated_v2Rebirth/revAnimated_v2Rebirth.safetensors\n",
"#%download https://civitai.com/api/download/models/95489\n",
"#https://civitai.com/api/download/models/55199\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/pornmasterAnime_v5.safetensors\n",
"#!wget -O \"/home/studio-lab-user/asd/models/Stable-diffusion/tmp_models/pornmasterAnime_v5.safetensors\" \"https://civitai.com/api/download/models/432042?type=Model&format=SafeTensor&size=full&fp=fp32\"\n",
"#%download https://civitai.com/api/download/models/432042?type=Model&format=SafeTensor&size=full&fp=fp32\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/yiffymix_v43/yiffymix_v43.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/furrytoonmix_v10/furrytoonmix_v10.safetensors\n",
"#%download https://huggingface.co/dikdimon/sac/resolve/main/cutecandymix_v20/cutecandymix_v20.safetensors\n",
"#%download https://civitai.com/api/download/models/384706\n",
"#%download https://civitai.com/api/download/models/96319\n",
"#%download https://civitai.com/api/download/models/49690\n",
"#%download https://civitai.com/api/download/models/429527\n",
"#%download https://civitai.com/api/download/models/453692\n",
"#%download https://civitai.com/api/download/models/104198\n",
"#%download https://civitai.com/api/download/models/247262\n",
"#%download https://civitai.com/api/download/models/180346\n",
"#!pip install wget\n",
"#!wget -O \"/home/studio-lab-user/asd/models/Stable-diffusion/tmp_models/YiffyMix.safetensors\" \"https://civitai.com/api/download/models/453692?type=Model&format=SafeTensor&size=full&fp=fp32\""
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "85c8539c-84a4-4578-8227-8d693d82cc2e",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" Exception: [AbstractCommand.cc:351] errorCode=3 URI=https://huggingface.co/dikdimon/sac/resolve/main/embeddings\n",
" -> [HttpSkipResponseCommand.cc:218] errorCode=3 Resource not found\n",
" 08cd68|ERR | 0B/s|/home/studio-lab-user/asd/models/embeddings\n"
]
}
],
"source": [
"%cd -q ~/asd/models\n",
"%download https://huggingface.co/dikdimon/sac/resolve/main/embeddings"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "6405ead1-4ce0-46f8-92c1-0237f20b1d3c",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" [#677a38 142MiB/144MiB(98%) CN:3 DL:101MiB] \n",
" 677a38|OK | 62MiB/s|/tmp/Lora/GiantessC_v0.4.safetensors\n",
" [#ee7ac6 691MiB/750MiB(92%) CN:15 DL:299MiB] \n",
" ee7ac6|OK | 239MiB/s|/tmp/Lora/sd_xl_dpo_lora_v1.safetensors\n",
" [#56a89f 79MiB/256MiB(30%) CN:16 DL:143MiB ETA:1s] \n",
" 56a89f|OK | 222MiB/s|/tmp/Lora/sd_1_5_dpo_lora_v1-128dim.safetensors\n",
" [#eba809 254MiB/256MiB(99%) CN:2 DL:143MiB] \n",
" eba809|OK | 126MiB/s|/tmp/Lora/sd_v15_dpo_lora_v1.safetensors\n",
" 1050b8|OK | 38MiB/s|/tmp/Lora/breastsizeslideroffset.safetensors\n",
" [#5a7379 107MiB/288MiB(37%) CN:16 DL:172MiB ETA:1s] \n",
" 5a7379|OK | 231MiB/s|/tmp/Lora/feet.safetensors\n",
" [#9d359e 108MiB/144MiB(75%) CN:16 DL:181MiB] \n",
" 9d359e|OK | 201MiB/s|/tmp/Lora/fmlorav1.2remaster.safetensors\n",
" [#afa745 126MiB/288MiB(43%) CN:16 DL:191MiB] \n",
" afa745|OK | 240MiB/s|/tmp/Lora/sd1.5_perfect feet.safetensors\n",
" [#19bbbd 35MiB/36MiB(98%) CN:6 DL:63MiB] \n",
" 19bbbd|OK | 64MiB/s|/tmp/Lora/Real_Dream_Hands.safetensors\n",
" [#2b1c3c 374MiB/515MiB(72%) CN:16 DL:256MiB] \n",
" 2b1c3c|OK | 220MiB/s|/tmp/Lora/GoodHands-beta2.safetensors\n",
" [#161632 380MiB/515MiB(73%) CN:16 DL:248MiB] \n",
" 161632|OK | 209MiB/s|/tmp/Lora/GoodHands-alpha3.safetensors\n",
" [#0d241f 514MiB/515MiB(99%) CN:1 DL:225MiB] \n",
" 0d241f|OK | 214MiB/s|/tmp/Lora/GoodHands-alpha2.safetensors\n",
" [#7fcf2d 111MiB/327MiB(34%) CN:16 DL:187MiB ETA:1s] \n",
" 7fcf2d|OK | 258MiB/s|/tmp/Lora/colorfix.safetensors\n",
" [#d92204 375MiB/671MiB(55%) CN:16 DL:250MiB ETA:1s] \n",
" d92204|OK | 277MiB/s|/tmp/Lora/gigantic_breasts_full_v1-01-000018.safetensors\n",
" [#9451e1 296MiB/297MiB(99%) CN:1 DL:179MiB] \n",
" 9451e1|OK | 167MiB/s|/tmp/Lora/nagachichiD.safetensors\n",
" [#1a4e74 114MiB/144MiB(79%) CN:16 DL:172MiB] \n",
" 1a4e74|OK | 95MiB/s|/tmp/Lora/slender hands (1).safetensors\n",
" [#bbe32a 123MiB/216MiB(57%) CN:16 DL:193MiB] \n",
" bbe32a|OK | 220MiB/s|/tmp/Lora/animefeetv4.safetensors\n",
" [#fa31b8 126MiB/144MiB(87%) CN:16 DL:185MiB] \n",
" fa31b8|OK | 146MiB/s|/tmp/Lora/circlelast.safetensors\n",
" [#31b72c 107MiB/144MiB(74%) CN:16 DL:166MiB] \n",
" 31b72c|OK | 117MiB/s|/tmp/Lora/blockyspirallast.safetensors\n",
" [#774e2d 142MiB/144MiB(98%) CN:2 DL:79MiB] \n",
" 774e2d|OK | 66MiB/s|/tmp/Lora/SpiralLlast.safetensors\n",
" [#ac8c8f 143MiB/144MiB(99%) CN:1 DL:74MiB] \n",
" ac8c8f|OK | 70MiB/s|/tmp/Lora/animemix_v3_offset.safetensors\n",
" [#463bd7 81MiB/144MiB(56%) CN:16 DL:152MiB] \n",
" 463bd7|OK | 170MiB/s|/tmp/Lora/ArsEmbarrassed-t5-000016.safetensors\n",
" [#14fc82 131MiB/288MiB(45%) CN:15 DL:200MiB] \n",
" 14fc82|OK | 242MiB/s|/tmp/Lora/realistic.safetensors\n",
" 19677d|OK | 111MiB/s|/tmp/Lora/background_detail_enhanced_simplified.safetensors\n",
" [#4323dd 143MiB/144MiB(99%) CN:1 DL:82MiB] \n",
" 4323dd|OK | 78MiB/s|/tmp/Lora/background_detail_enhanced_simplified_v2.safetensors\n",
" f82f87|OK | 65MiB/s|/tmp/Lora/Background_Detail_v3.safetensors\n",
" [#59d9ef 73MiB/225MiB(32%) CN:16 DL:156MiB] \n",
" 59d9ef|OK | 167MiB/s|/tmp/Lora/ShexyoStyle.safetensors\n",
" 40d528|OK | 174MiB/s|/tmp/Lora/shadV6.1LOL.safetensors\n",
" [#98049a 80MiB/108MiB(74%) CN:16 DL:159MiB] \n",
" 98049a|OK | 126MiB/s|/tmp/Lora/asayohokoV3LOL.safetensors\n",
" [#acf41d 100MiB/144MiB(69%) CN:16 DL:169MiB] \n",
" acf41d|OK | 196MiB/s|/tmp/Lora/ShadRavenV1.3.safetensors\n",
" [#93a2e6 90MiB/144MiB(62%) CN:16 DL:136MiB] \n",
" 93a2e6|OK | 101MiB/s|/tmp/Lora/MavisV1.safetensors\n",
" [#2f8425 143MiB/144MiB(99%) CN:1 DL:77MiB] \n",
" 2f8425|OK | 72MiB/s|/tmp/Lora/BWWMv3.safetensors\n",
" [#1544e2 59MiB/144MiB(41%) CN:16 DL:117MiB] \n",
" 1544e2|OK | 116MiB/s|/tmp/Lora/StarfireNSFWv1.1.safetensors\n",
" [#c08d4e 141MiB/144MiB(97%) CN:4 DL:139MiB] \n",
" c08d4e|OK | 100MiB/s|/tmp/Lora/TwoP.safetensors\n",
" [#2685df 127MiB/144MiB(88%) CN:15 DL:187MiB] \n",
" 2685df|OK | 156MiB/s|/tmp/Lora/TatsumakiNSFWv1.safetensors\n",
" [#000c12 115MiB/144MiB(79%) CN:16 DL:158MiB] \n",
" 000c12|OK | 106MiB/s|/tmp/Lora/DeeDeeV1.1.safetensors\n",
" [#45b9c2 75MiB/144MiB(52%) CN:16 DL:137MiB] \n",
" 45b9c2|OK | 173MiB/s|/tmp/Lora/BlackGirlV1.safetensors\n",
" [#2fc2a9 143MiB/144MiB(99%) CN:1 DL:92MiB] \n",
" 2fc2a9|OK | 92MiB/s|/tmp/Lora/AdultMableV1.safetensors\n",
" [#92743f 143MiB/144MiB(99%) CN:1 DL:82MiB] \n",
" 92743f|OK | 82MiB/s|/tmp/Lora/breastinclassBetter.safetensors\n",
" [#a4fdf0 120MiB/121MiB(99%) CN:1 DL:73MiB] \n",
" a4fdf0|OK | 70MiB/s|/tmp/Lora/sidewinderboobsv06.safetensors\n",
" [#d8a81c 14MiB/144MiB(10%) CN:16 DL:59MiB ETA:2s] \n",
" d8a81c|OK | 152MiB/s|/tmp/Lora/bad_pic.safetensors\n",
" [#4700e0 107MiB/108MiB(99%) CN:5 DL:158MiB] \n",
" 4700e0|OK | 157MiB/s|/tmp/Lora/lewdV2.1LOL.safetensors\n",
" [#0c0195 107MiB/108MiB(99%) CN:4 DL:163MiB] \n",
" 0c0195|OK | 141MiB/s|/tmp/Lora/sunagawaV1.5LOL.safetensors\n",
" [#cb3a86 89MiB/108MiB(82%) CN:16 DL:155MiB] \n",
" cb3a86|OK | 116MiB/s|/tmp/Lora/ayamiKojimaV1LOL.safetensors\n",
" [#384408 107MiB/108MiB(99%) CN:1 DL:85MiB] \n",
" 384408|OK | 78MiB/s|/tmp/Lora/JLullabyV3LOL.safetensors\n",
" [#db7962 103MiB/108MiB(95%) CN:11 DL:151MiB] \n",
" db7962|OK | 120MiB/s|/tmp/Lora/oryuutoV1.5LOL.safetensors\n",
" [#eeb39f 28MiB/108MiB(26%) CN:16 DL:73MiB ETA:1s] \n",
" eeb39f|OK | 140MiB/s|/tmp/Lora/blackfootwearV1LOL.safetensors\n",
" [#de93cb 107MiB/108MiB(99%) CN:1 DL:68MiB] \n",
" de93cb|OK | 64MiB/s|/tmp/Lora/mscV2.5LOL.safetensors\n",
" [#e75418 59MiB/128MiB(46%) CN:16 DL:130MiB] \n",
" e75418|OK | 131MiB/s|/tmp/Lora/LCM_LoRA_Weights_SD15.safetensors\n"
]
}
],
"source": [
"''' LoRa '''\n",
"%tempe\n",
"%cd -q ~/asd/models/Lora/tmp_Lora\n",
"%download https://civitai.com/api/download/models/159707\n",
"%download https://civitai.com/api/download/models/273996\n",
"%download https://civitai.com/api/download/models/269377\n",
"%download https://civitai.com/api/download/models/273993\n",
"%download https://civitai.com/api/download/models/146600\n",
"%download https://civitai.com/api/download/models/161366\n",
"%download https://civitai.com/api/download/models/255800\n",
"%download https://civitai.com/api/download/models/227997\n",
"%download https://civitai.com/api/download/models/290009\n",
"%download https://civitai.com/api/download/models/55199\n",
"%download https://civitai.com/api/download/models/53396\n",
"%download https://civitai.com/api/download/models/52550\n",
"%download https://civitai.com/api/download/models/136319\n",
"%download https://civitai.com/api/download/models/190406\n",
"%download https://civitai.com/api/download/models/19135\n",
"%download https://civitai.com/api/download/models/274543\n",
"%download https://civitai.com/api/download/models/25848\n",
"%download https://civitai.com/api/download/models/7431\n",
"%download https://civitai.com/api/download/models/7427\n",
"%download https://civitai.com/api/download/models/7428\n",
"%download https://civitai.com/api/download/models/60568\n",
"%download https://civitai.com/api/download/models/94841\n",
"%download https://civitai.com/api/download/models/106626\n",
"%download https://civitai.com/api/download/models/121842\n",
"%download https://civitai.com/api/download/models/123272\n",
"%download https://civitai.com/api/download/models/137901\n",
"%download https://civitai.com/api/download/models/244925\n",
"%download https://civitai.com/api/download/models/338661\n",
"%download https://civitai.com/api/download/models/334075\n",
"%download https://civitai.com/api/download/models/194009\n",
"%download https://civitai.com/api/download/models/230295\n",
"%download https://civitai.com/api/download/models/221136\n",
"%download https://civitai.com/api/download/models/193881\n",
"%download https://civitai.com/api/download/models/161013\n",
"%download https://civitai.com/api/download/models/191797\n",
"%download https://civitai.com/api/download/models/159862\n",
"%download https://civitai.com/api/download/models/156283\n",
"%download https://civitai.com/api/download/models/155278\n",
"%download https://civitai.com/api/download/models/23250\n",
"%download https://civitai.com/api/download/models/163324\n",
"%download https://civitai.com/api/download/models/89519\n",
"%download https://civitai.com/api/download/models/446036\n",
"%download https://civitai.com/api/download/models/441480\n",
"%download https://civitai.com/api/download/models/383113\n",
"%download https://civitai.com/api/download/models/336421\n",
"%download https://civitai.com/api/download/models/452239\n",
"%download https://civitai.com/api/download/models/454378\n",
"%download https://civitai.com/api/download/models/478963\n",
"%download https://civitai.com/api/download/models/424706"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "97a30db0-b81c-40df-b1a2-7ad942984193",
"metadata": {},
"outputs": [],
"source": [
"''' LoRa '''\n",
"%tempe\n",
"%cd -q ~/asd/models/Lora/tmp_Lora\n",
"%download https://civitai.com/api/download/models/454523\n",
"%download https://civitai.com/api/download/models/448745\n",
"%download https://civitai.com/api/download/models/448977\n",
"%download https://civitai.com/api/download/models/311797\n",
"%download https://civitai.com/api/download/models/338262\n",
"%download https://civitai.com/api/download/models/145907\n",
"%download https://civitai.com/api/download/models/326346"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "76417845-1a86-42f4-a7a1-93ff028fcba0",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[Errno 2] No such file or directory: '/home/studio-lab-user/asd/models/Lora/tmp_Lora'\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35m086eb9\u001b[0m 749MiB/750MiB\u001b[36m(99%)\u001b[0m CN:\u001b[38;5;69m11\u001b[0m DL:\u001b[38;5;135m304MiB\u001b[0m\u001b[35m】\u001b[0m \n",
" 086eb9|\u001b[38;5;35mOK\u001b[0m | 296MiB/s|/home/studio-lab-user/sd_xl_dpo_lora_v1.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35m6239a3\u001b[0m 695MiB/750MiB\u001b[36m(92%)\u001b[0m CN:\u001b[38;5;69m16\u001b[0m DL:\u001b[38;5;135m318MiB\u001b[0m\u001b[35m】\u001b[0m \n",
" 6239a3|\u001b[38;5;35mOK\u001b[0m | 289MiB/s|/home/studio-lab-user/sd_xl_dpo_turbo_lora_v1-128dim.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35mdb5679\u001b[0m 681MiB/750MiB\u001b[36m(90%)\u001b[0m CN:\u001b[38;5;69m16\u001b[0m DL:\u001b[38;5;135m315MiB\u001b[0m\u001b[35m】\u001b[0m \n",
" db5679|\u001b[38;5;35mOK\u001b[0m | 321MiB/s|/home/studio-lab-user/sd_xl_dpo_lora_v1-128dim.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35m1f40bc\u001b[0m 117MiB/374MiB\u001b[36m(31%)\u001b[0m CN:\u001b[38;5;69m16\u001b[0m DL:\u001b[38;5;135m198MiB\u001b[0m ETA:\u001b[33m1s\u001b[0m\u001b[35m】\u001b[0m \n",
" 1f40bc|\u001b[38;5;35mOK\u001b[0m | 271MiB/s|/home/studio-lab-user/iphone_mirror_selfie_v01b.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35mbf8196\u001b[0m 2.8MiB/116MiB\u001b[36m(2%)\u001b[0m CN:\u001b[38;5;69m16\u001b[0m DL:\u001b[38;5;135m23MiB\u001b[0m ETA:\u001b[33m4s\u001b[0m\u001b[35m】\u001b[0m \n",
" bf8196|\u001b[38;5;35mOK\u001b[0m | 106MiB/s|/home/studio-lab-user/anipony_XL.safetensors\n",
" 1f5a2c|\u001b[38;5;35mOK\u001b[0m | 257MiB/s|/home/studio-lab-user/style-enhancer-xl.safetensors\n",
" 9b79c1|\u001b[38;5;35mOK\u001b[0m | 258MiB/s|/home/studio-lab-user/anime-detailer-xl.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35md1c581\u001b[0m 83MiB/217MiB\u001b[36m(38%)\u001b[0m CN:\u001b[38;5;69m16\u001b[0m DL:\u001b[38;5;135m161MiB\u001b[0m\u001b[35m】\u001b[0m \n",
" d1c581|\u001b[38;5;35mOK\u001b[0m | 215MiB/s|/home/studio-lab-user/Style_Asanagi_XL_ff.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35m021cb3\u001b[0m 136MiB/217MiB\u001b[36m(62%)\u001b[0m CN:\u001b[38;5;69m16\u001b[0m DL:\u001b[38;5;135m204MiB\u001b[0m\u001b[35m】\u001b[0m \n",
" 021cb3|\u001b[38;5;35mOK\u001b[0m | 216MiB/s|/home/studio-lab-user/fellatrix_style_xl_ilff.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35mc095db\u001b[0m 216MiB/217MiB\u001b[36m(99%)\u001b[0m CN:\u001b[38;5;69m1\u001b[0m DL:\u001b[38;5;135m126MiB\u001b[0m\u001b[35m】\u001b[0m \n",
" c095db|\u001b[38;5;35mOK\u001b[0m | 117MiB/s|/home/studio-lab-user/officialpit_style_xl_ilff.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35m619b3c\u001b[0m 143MiB/217MiB\u001b[36m(65%)\u001b[0m CN:\u001b[38;5;69m16\u001b[0m DL:\u001b[38;5;135m173MiB\u001b[0m\u001b[35m】\u001b[0m \n",
" 619b3c|\u001b[38;5;35mOK\u001b[0m | 153MiB/s|/home/studio-lab-user/tentacletrap_concept_ponyxl_ilff.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35m09fd63\u001b[0m 3.8MiB/127MiB\u001b[36m(2%)\u001b[0m CN:\u001b[38;5;69m16\u001b[0m DL:\u001b[38;5;135m19MiB\u001b[0m ETA:\u001b[33m6s\u001b[0m\u001b[35m】\u001b[0m \n",
" 09fd63|\u001b[38;5;35mOK\u001b[0m | 120MiB/s|/home/studio-lab-user/Lunas-JLullaby-SDXL-A3.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35md6dc02\u001b[0m 67MiB/217MiB\u001b[36m(31%)\u001b[0m CN:\u001b[38;5;69m16\u001b[0m DL:\u001b[38;5;135m127MiB\u001b[0m ETA:\u001b[33m1s\u001b[0m\u001b[35m】\u001b[0m \n",
" d6dc02|\u001b[38;5;35mOK\u001b[0m | 211MiB/s|/home/studio-lab-user/shadman_style_ponyxl_ilff.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35m9d91d5\u001b[0m 108MiB/109MiB\u001b[36m(99%)\u001b[0m CN:\u001b[38;5;69m1\u001b[0m DL:\u001b[38;5;135m55MiB\u001b[0m\u001b[35m】\u001b[0m \n",
" 9d91d5|\u001b[38;5;35mOK\u001b[0m | 52MiB/s|/home/studio-lab-user/Lunas-Blackedwear-Concept-SDXL-A1.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35mc92732\u001b[0m 96MiB/109MiB\u001b[36m(88%)\u001b[0m CN:\u001b[38;5;69m16\u001b[0m DL:\u001b[38;5;135m156MiB\u001b[0m\u001b[35m】\u001b[0m \n",
" c92732|\u001b[38;5;35mOK\u001b[0m | 145MiB/s|/home/studio-lab-user/Lunas-BleachedWear-Concept-SDXL-A1.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35mc82bcf\u001b[0m 432MiB/435MiB\u001b[36m(99%)\u001b[0m CN:\u001b[38;5;69m4\u001b[0m DL:\u001b[38;5;135m159MiB\u001b[0m\u001b[35m】\u001b[0m \n",
" c82bcf|\u001b[38;5;35mOK\u001b[0m | 134MiB/s|/home/studio-lab-user/Perfect Hands v2.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35mefbcc5\u001b[0m 26MiB/217MiB\u001b[36m(11%)\u001b[0m CN:\u001b[38;5;69m16\u001b[0m DL:\u001b[38;5;135m63MiB\u001b[0m ETA:\u001b[33m3s\u001b[0m\u001b[35m】\u001b[0m \n",
" efbcc5|\u001b[38;5;35mOK\u001b[0m | 180MiB/s|/home/studio-lab-user/AwyHandHeartXL.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35m0a8e08\u001b[0m 24MiB/325MiB\u001b[36m(7%)\u001b[0m CN:\u001b[38;5;69m16\u001b[0m DL:\u001b[38;5;135m69MiB\u001b[0m ETA:\u001b[33m4s\u001b[0m\u001b[35m】\u001b[0m \n",
" 0a8e08|\u001b[38;5;35mOK\u001b[0m | 255MiB/s|/home/studio-lab-user/StS-Pendulum-Hypnosis-Coin-SDXL.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35mf1b195\u001b[0m 216MiB/217MiB\u001b[36m(99%)\u001b[0m CN:\u001b[38;5;69m1\u001b[0m DL:\u001b[38;5;135m103MiB\u001b[0m\u001b[35m】\u001b[0m \n",
" f1b195|\u001b[38;5;35mOK\u001b[0m | 97MiB/s|/home/studio-lab-user/mak1ma0XL_Pony_v1.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35m1f6fe1\u001b[0m 0B/0B CN:\u001b[38;5;69m1\u001b[0m DL:\u001b[38;5;135m0B\u001b[0m\u001b[35m】\u001b[0m Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 1f6fe1|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/StS-SDXL-Foreshortening.safetensors\n",
"\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35m0b94da\u001b[0m 55MiB/61MiB\u001b[36m(91%)\u001b[0m CN:\u001b[38;5;69m13\u001b[0m DL:\u001b[38;5;135m90MiB\u001b[0m\u001b[35m】\u001b[0m \n",
" 0b94da|\u001b[38;5;35mOK\u001b[0m | 55MiB/s|/home/studio-lab-user/MARELycoXL.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35mea6112\u001b[0m 216MiB/217MiB\u001b[36m(99%)\u001b[0m CN:\u001b[38;5;69m1\u001b[0m DL:\u001b[38;5;135m117MiB\u001b[0m\u001b[35m】\u001b[0m \n",
" ea6112|\u001b[38;5;35mOK\u001b[0m | 110MiB/s|/home/studio-lab-user/P0w3eeerXL_Pony_v1.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35mff1b42\u001b[0m 0B/0B CN:\u001b[38;5;69m1\u001b[0m DL:\u001b[38;5;135m0B\u001b[0m\u001b[35m】\u001b[0m Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" ff1b42|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/ponyxl-mizumizuni-style-v03.safetensors\n",
"\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35m4b020a\u001b[0m 53MiB/54MiB\u001b[36m(98%)\u001b[0m CN:\u001b[38;5;69m1\u001b[0m DL:\u001b[38;5;135m32MiB\u001b[0m\u001b[35m】\u001b[0m \n",
" 4b020a|\u001b[38;5;35mOK\u001b[0m | 31MiB/s|/home/studio-lab-user/PennyPolendinaPDXL.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 7a4175|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/undertale_v1_2_5-xl.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 734f72|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/undertale_A31-1_2-xl.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35mb68e68\u001b[0m 134MiB/217MiB\u001b[36m(61%)\u001b[0m CN:\u001b[38;5;69m16\u001b[0m DL:\u001b[38;5;135m208MiB\u001b[0m\u001b[35m】\u001b[0m \n",
" b68e68|\u001b[38;5;35mOK\u001b[0m | 211MiB/s|/home/studio-lab-user/Shexyo_Style__PONY_XL.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 7dcf3b|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/Expressive_H-000001.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 188bbf|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/undertale_A31-1_2-xl.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" f8d293|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/sd_xl_turbo_lora_v1.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35mf1492d\u001b[0m 0B/0B CN:\u001b[38;5;69m1\u001b[0m DL:\u001b[38;5;135m0B\u001b[0m\u001b[35m】\u001b[0m \n",
" f1492d|\u001b[38;5;35mOK\u001b[0m | 0B/s|/home/studio-lab-user/anipony_XL.safetensors\n",
" 592066|\u001b[38;5;35mOK\u001b[0m | 0B/s|/home/studio-lab-user/fellatrix_style_xl_ilff.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" e413f1|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/fellatrix_style_v2.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" ac7f42|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/add-detail-xl.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 7d296e|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/DetailedEyes_V3.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" c8d9e5|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/StS_detail_slider_v1.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35m1bfac7\u001b[0m 0B/0B CN:\u001b[38;5;69m1\u001b[0m DL:\u001b[38;5;135m0B\u001b[0m\u001b[35m】\u001b[0m Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 1bfac7|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/detail_eyes-000019.safetensors\n",
"\n",
" Exception: [AbstractCommand.cc:351] errorCode=3 URI=https://civitai.com/api/download/models/447576?token=25d7bc0d34a2f623ae113f0197260b29\n",
" -> [HttpSkipResponseCommand.cc:218] errorCode=3 Resource not found\n",
" 84946e|\u001b[31mERR\u001b[0m | 0B/s|https://civitai.com/api/download/models/447576?token=25d7bc0d34a2f623ae113f0197260b29\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" f2793c|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/sdxl_lightning_8step_lora.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" a97ebd|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/povpinchpony.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 48614c|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/ben_tennyson.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 4d2bc9|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/sword swallowing position XL .safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 3afa9d|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/Round_Breasts_XL_XV7-000038.safetensors\n",
" 927eff|\u001b[38;5;35mOK\u001b[0m | 50MiB/s|/home/studio-lab-user/vectorizer_2.0_bdsqlsz.pt\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 422cd1|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/nudify_xl.safetensors\n",
" 7f53be|\u001b[38;5;35mOK\u001b[0m | 0B/s|/home/studio-lab-user/AwyHandHeartXL.safetensors\n",
" \u001b[35m【\u001b[0m#\u001b[38;5;35m2d1f4e\u001b[0m 0B/0B CN:\u001b[38;5;69m1\u001b[0m DL:\u001b[38;5;135m0B\u001b[0m\u001b[35m】\u001b[0m \n",
" 2d1f4e|\u001b[38;5;35mOK\u001b[0m | 0B/s|/home/studio-lab-user/Style_Asanagi_XL_ff.safetensors\n",
" b5bdaa|\u001b[38;5;35mOK\u001b[0m | 0B/s|/home/studio-lab-user/iphone_mirror_selfie_v01b.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" cb9f58|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/xl_more_art-full_v1.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 859038|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/LCM_LoRA_Weights_SDXL.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 72e30c|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/Penis_Shadow_Pony.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 5b74e3|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/StS_age_slider_v1_initial_release.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 0e0cea|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/StS-SDXL-Foreshortening-v2-LyCORIS.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" e627cd|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/Ratatatat74XLLocon.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 0e62f4|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/ratatatat74_pony_v2.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" a6ec8c|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/Ratatatat74_Style_v2.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" f84e5d|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/ratatatat74-000050.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" fd68fc|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/Ratatatat74XLLocon.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 79aff3|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/Ratpony.safetensors\n",
" Exception: [AbstractDiskWriter.cc:557] errNum=28 errorCode=9 fallocate failed. cause: No space left on device\n",
" 1b779a|\u001b[31mERR\u001b[0m | 0B/s|/home/studio-lab-user/ratatatat74_XL_v2-000006.safetensors\n"
]
}
],
"source": [
"''' LoRa '''\n",
"%tempe\n",
"%cd -q ~/asd/models/Lora/tmp_Lora\n",
"%download https://civitai.com/api/download/models/273996\n",
"%download https://civitai.com/api/download/models/268054\n",
"%download https://civitai.com/api/download/models/269354\n",
"%download https://civitai.com/api/download/models/288679\n",
"%download https://civitai.com/api/download/models/334039\n",
"%download https://huggingface.co/Linaqruf/style-enhancer-xl-lora/resolve/main/style-enhancer-xl.safetensors style-enhancer-xl.safetensors\n",
"%download https://huggingface.co/Linaqruf/anime-detailer-xl-lora/resolve/main/anime-detailer-xl.safetensors anime-detailer-xl.safetensors\n",
"%download https://civitai.com/api/download/models/344107\n",
"%download https://civitai.com/api/download/models/338262\n",
"%download https://civitai.com/api/download/models/342682\n",
"%download https://civitai.com/api/download/models/374928\n",
"%download https://civitai.com/api/download/models/387127\n",
"%download https://civitai.com/api/download/models/368206\n",
"%download https://civitai.com/api/download/models/402062 \n",
"%download https://civitai.com/api/download/models/404516 \n",
"%download https://civitai.com/api/download/models/254267\n",
"%download https://civitai.com/api/download/models/137954\n",
"%download https://civitai.com/api/download/models/359035\n",
"%download https://civitai.com/api/download/models/374178\n",
"%download https://civitai.com/api/download/models/364350\n",
"%download https://civitai.com/api/download/models/383010\n",
"%download https://civitai.com/api/download/models/371955\n",
"%download https://civitai.com/api/download/models/311797\n",
"%download https://civitai.com/api/download/models/380600\n",
"%download https://civitai.com/api/download/models/317358\n",
"%download https://civitai.com/api/download/models/454688\n",
"%download https://civitai.com/api/download/models/378138\n",
"%download https://civitai.com/api/download/models/382152\n",
"%download https://civitai.com/api/download/models/454688\n",
"%download https://civitai.com/api/download/models/242807\n",
"%download https://civitai.com/api/download/models/334039\n",
"%download https://civitai.com/api/download/models/338262\n",
"%download https://civitai.com/api/download/models/367798\n",
"%download https://civitai.com/api/download/models/135867\n",
"%download https://civitai.com/api/download/models/145907\n",
"%download https://civitai.com/api/download/models/448745\n",
"%download https://civitai.com/api/download/models/326346\n",
"%download https://civitai.com/api/download/models/447576\n",
"%download https://civitai.com/api/download/models/363353\n",
"%download https://civitai.com/api/download/models/438890\n",
"%download https://civitai.com/api/download/models/434481\n",
"%download https://civitai.com/api/download/models/365369\n",
"%download https://civitai.com/api/download/models/407574\n",
"%download https://civitai.com/api/download/models/246905\n",
"%download https://civitai.com/api/download/models/140157\n",
"%download https://civitai.com/api/download/models/137954\n",
"%download https://civitai.com/api/download/models/344107\n",
"%download https://civitai.com/api/download/models/288679\n",
"%download https://civitai.com/api/download/models/152309\n",
"%download https://civitai.com/api/download/models/424720\n",
"%download https://civitai.com/api/download/models/438998\n",
"%download https://civitai.com/api/download/models/448977\n",
"%download https://civitai.com/api/download/models/454523\n",
"%download https://civitai.com/api/download/models/402659\n",
"%download https://civitai.com/api/download/models/417698\n",
"%download https://civitai.com/api/download/models/441487\n",
"%download https://civitai.com/api/download/models/293773\n",
"%download https://civitai.com/api/download/models/402659\n",
"%download https://civitai.com/api/download/models/356173\n",
"%download https://civitai.com/api/download/models/319831"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "97a1c3a2-cba9-4bb5-9a57-c7f72be17166",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/tmp\n",
"--2024-05-20 11:21:59-- https://github.com/openziti/zrok/releases/download/v0.4.23/zrok_0.4.23_linux_amd64.tar.gz\n",
"Resolving github.com (github.com)... 140.82.112.3\n",
"Connecting to github.com (github.com)|140.82.112.3|:443... connected.\n",
"HTTP request sent, awaiting response... 302 Found\n",
"Location: https://objects.githubusercontent.com/github-production-release-asset-2e65be/515311500/53a2fa87-54f7-4511-975d-fd33dded857c?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=releaseassetproduction%2F20240520%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20240520T112159Z&X-Amz-Expires=300&X-Amz-Signature=618c1d5670adf74918b94b60f6a68b440cb52ec1bee991560795cbf92e77bab7&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=515311500&response-content-disposition=attachment%3B%20filename%3Dzrok_0.4.23_linux_amd64.tar.gz&response-content-type=application%2Foctet-stream [following]\n",
"--2024-05-20 11:21:59-- https://objects.githubusercontent.com/github-production-release-asset-2e65be/515311500/53a2fa87-54f7-4511-975d-fd33dded857c?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=releaseassetproduction%2F20240520%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20240520T112159Z&X-Amz-Expires=300&X-Amz-Signature=618c1d5670adf74918b94b60f6a68b440cb52ec1bee991560795cbf92e77bab7&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=515311500&response-content-disposition=attachment%3B%20filename%3Dzrok_0.4.23_linux_amd64.tar.gz&response-content-type=application%2Foctet-stream\n",
"Resolving objects.githubusercontent.com (objects.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.110.133, ...\n",
"Connecting to objects.githubusercontent.com (objects.githubusercontent.com)|185.199.108.133|:443... connected.\n",
"HTTP request sent, awaiting response... 200 OK\n",
"Length: 25141044 (24M) [application/octet-stream]\n",
"Saving to: 'zrok_0.4.23_linux_amd64.tar.gz'\n",
"\n",
"zrok_0.4.23_linux_a 100%[===================>] 23.98M --.-KB/s in 0.08s \n",
"\n",
"2024-05-20 11:21:59 (293 MB/s) - 'zrok_0.4.23_linux_amd64.tar.gz' saved [25141044/25141044]\n",
"\n",
"/usr/bin/sh: 1: Syntax error: end of file unexpected\n"
]
}
],
"source": [
"%cd /tmp\n",
"!wget https://github.com/openziti/zrok/releases/download/v0.4.23/zrok_0.4.23_linux_amd64.tar.gz\n",
"!mkdir /tmp/zrok\n",
"!tar -xf ./zrok*linux*.tar.gz -C /tmp/zrok\n",
"!mkdir -p /tmp/zrok/bin && install /tmp/zrok/zrok /tmp/zrok/bin\n",
"import os\n",
"os.environ['PATH'] = \"/tmp/zrok/bin:\" + os.environ['PATH']\n",
"!zrok enable <D2p4c9sDUe5O>"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "06af74c9-f25b-4116-aee2-ab025ce31bd1",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/usr/bin/sh: 1: Syntax error: end of file unexpected\n"
]
}
],
"source": [
"import os\n",
"os.environ['PATH'] = \"/tmp/zrok/bin:\" + os.environ['PATH']\n",
"!zrok enable <unoVaKYezHAC>"
]
},
{
"cell_type": "markdown",
"id": "26452e55-03b1-48a3-a18f-d2a2c5a63d84",
"metadata": {
"tags": []
},
"source": [
"#### *Temporary*"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "f8a8e5bc-ebd3-41e5-a1ca-00037a623cd5",
"metadata": {
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
"<style>:root {\n",
" --cn-gradient-bg2: linear-gradient(to right,\n",
" rgb(255, 0, 0),\n",
" rgb(255, 0, 25),\n",
" rgb(255, 0, 50),\n",
" rgb(255, 0, 75),\n",
" rgb(255, 0, 100),\n",
" rgb(255, 0, 125),\n",
" rgb(255, 0, 150),\n",
" rgb(255, 0, 175),\n",
" rgb(255, 0, 200),\n",
" rgb(255, 0, 225),\n",
" rgb(255, 0, 255),\n",
" rgb(225, 0, 255),\n",
" rgb(200, 0, 255),\n",
" rgb(175, 0, 255),\n",
" rgb(150, 0, 255),\n",
" rgb(125, 0, 255),\n",
" rgb(100, 0, 255),\n",
" rgb(75, 0, 255),\n",
" rgb(50, 0, 255),\n",
" rgb(25, 0, 255),\n",
" rgb(0, 0, 255),\n",
" rgb(0, 25, 255),\n",
" rgb(0, 50, 255),\n",
" rgb(0, 75, 255),\n",
" rgb(0, 100, 255),\n",
" rgb(0, 125, 255),\n",
" rgb(0, 150, 255),\n",
" rgb(0, 175, 255),\n",
" rgb(0, 200, 255),\n",
" rgb(0, 225, 255),\n",
" rgb(0, 255, 255),\n",
" rgb(0, 255, 225),\n",
" rgb(0, 255, 200),\n",
" rgb(0, 255, 175),\n",
" rgb(0, 255, 150),\n",
" rgb(0, 255, 125),\n",
" rgb(0, 255, 100),\n",
" rgb(0, 255, 75),\n",
" rgb(0, 255, 50),\n",
" rgb(0, 255, 25),\n",
" rgb(0, 255, 0),\n",
" rgb(25, 255, 0),\n",
" rgb(50, 255, 0),\n",
" rgb(75, 255, 0),\n",
" rgb(100, 255, 0),\n",
" rgb(125, 255, 0),\n",
" rgb(150, 255, 0),\n",
" rgb(175, 255, 0),\n",
" rgb(200, 255, 0),\n",
" rgb(225, 255, 0),\n",
" rgb(255, 255, 0), \n",
" rgb(255, 225, 0),\n",
" rgb(255, 200, 0),\n",
" rgb(255, 175, 0),\n",
" rgb(255, 150, 0),\n",
" rgb(255, 125, 0),\n",
" rgb(255, 100, 0),\n",
" rgb(255, 75, 0),\n",
" rgb(255, 50, 0),\n",
" rgb(255, 25, 0),\n",
" rgb(255, 0, 0));}\n",
"\n",
".boks2 {\n",
" border: 3px solid transparent;\n",
" border-radius: 15px;\n",
" padding: 5px;\n",
" margin: 0;\n",
" background: url('https://wallpapercave.com/dwp1x/wp5126154.jpg');\n",
" background-size: 110% 110%;\n",
" background-position: 50% 80%;\n",
" overflow: visible;\n",
" animation: slide-blur-above 1s, BorderPulse 15s infinite;\n",
"}\n",
"\n",
".widget-container {\n",
" position: relative;\n",
" width: 630px;\n",
" height: 0px;\n",
" margin-top: 0px;\n",
" margin-right: 0px;\n",
" margin-bottom: 0px;\n",
" margin-left: 0px;\n",
" overflow: visible;\n",
"}\n",
".download-button, .select-all-button, .unselect-all-button {\n",
" font-family: 'Times New Roman', serif;\n",
" text-align: center;\n",
" height: 40px;\n",
" color: #ab22fe;\n",
" border: 3px solid #2197f2;\n",
" background-color: transparent;\n",
" border-radius: 4px;\n",
" background-position: left bottom;\n",
" transition: all 0.5s ease-out;\n",
" transform: scale(0.8);\n",
" vertical-align: middle;\n",
" z-index: 1;\n",
"}\n",
".download-button {\n",
" margin-top: 380px;\n",
" margin-right: 30px;\n",
" margin-bottom: 0px;\n",
" margin-left: 100px;\n",
" font-size: 22px;\n",
" width: 500px;\n",
" font-weight: bold;\n",
"}\n",
"\n",
".select-all-button {\n",
" margin-top: 380px;\n",
" margin-right: -30px;\n",
" margin-bottom: 0px;\n",
" margin-left: 30px;\n",
" font-size: 21px;\n",
" width: 300px;\n",
"}\n",
"\n",
".unselect-all-button {\n",
" margin-top: 380px;\n",
" margin-right: -30px;\n",
" margin-bottom: 0px;\n",
" margin-left: 20px;\n",
" font-size: 21px;\n",
" width: 300px;\n",
"}\n",
"\n",
".download-button:hover, .select-all-button:hover, .unselect-all-button:hover {\n",
" font-weight: bold;\n",
" color: #212121;\n",
" border-radius: 4px;\n",
" border: 3px solid transparent;\n",
" background-image: var(--cn-gradient-bg2);\n",
" background-size: 800% 500%;\n",
" background-position: left bottom;\n",
" transition: border 0s;\n",
" cursor: pointer;\n",
" transition: none;\n",
" vertical-align: middle;\n",
" transform: scale(0.9);\n",
" animation: slideBackground 10s linear infinite, BorderPulse 7s infinite;\n",
" transition: all 0.3s ease-out;\n",
"}\n",
"\n",
".border-style {\n",
" position: absolute;\n",
" display: block;\n",
" bottom: -430px;\n",
" left: 49%;\n",
" transform: translateX(-50%);\n",
" width: 600px;\n",
" height: 55px;\n",
" border: 3px solid #ab22fe;\n",
" border-radius: 50px;\n",
" background-color: #212121;\n",
" padding: 0px;\n",
"}\n",
"\n",
".checkbox-group1 input[type=\"checkbox\"],\n",
".checkbox-group2 input[type=\"checkbox\"] {\n",
" margin-top: -3px;\n",
" margin-right: 10px;\n",
" margin-bottom: 0px;\n",
" margin-left: 0px;\n",
" vertical-align: middle;\n",
"}\n",
"\n",
".checkbox-group1 label {\n",
" font-size: 12px;\n",
" color: white;\n",
" margin-top: 2px;\n",
" margin-right: -50px;\n",
" margin-left: 50px;\n",
" margin-bottom: -5px;\n",
"}\n",
"\n",
".checkbox-group2 label {\n",
" font-size: 12px;\n",
" color: white;\n",
" margin-top: 2px;\n",
" margin-right: -50px;\n",
" margin-left: 0px;\n",
" margin-bottom: -5px;\n",
" vertical-align: middle;\n",
"}\n",
"\n",
".checkbox-group1 label:hover {\n",
" margin-top: -10px;\n",
" margin-right: -50px;\n",
" margin-bottom: -50px;\n",
" margin-left: 40px;\n",
" transform: translateY(0px) translateX(-3px);\n",
" border-radius: 10px;\n",
" padding-left: 10px;\n",
" padding-right: 10px;\n",
" padding-bottom: 0px;\n",
" color: #ab22fe;\n",
" background-color: #212121;\n",
" border: 3px solid #2197f2;\n",
" transition: border 0s;\n",
" cursor: pointer;\n",
" transition: none;\n",
"}\n",
"\n",
".checkbox-group2 label:hover {\n",
" margin-top: -10px;\n",
" margin-right: -50px;\n",
" margin-bottom: -50px;\n",
" margin-left: 0px;\n",
" transform: translateY(0px) translateX(-13px);\n",
" border-radius: 10px;\n",
" padding-left: 10px;\n",
" padding-right: 10px;\n",
" padding-bottom: 0px;\n",
" color: #ab22fe;\n",
" background-color: #212121;\n",
" border: 3px solid #2197f2;\n",
" transition: border 0s;\n",
" cursor: pointer;\n",
" transition: none;\n",
"}\n",
"\n",
".checkbox-group1 label:active, .checkbox-group2 label:active {\n",
" background-image: var(--cn-gradient-bg2);\n",
" background-size: 800% 500%;\n",
" animation: slideBackground 10s linear infinite, BorderPulse 7s infinite;\n",
" font-weight: bold;\n",
" color: #212121;}\n",
"\n",
"@keyframes slideBackground {\n",
" 0% { background-position: 0% 50%; }\n",
" 100% { background-position: -800% 50%; }}\n",
"\n",
"@keyframes BorderPulse {\n",
" 0% {border-color: rgba(255, 0, 0, 1);}\n",
" 1.67% {border-color: rgba(255, 0, 25, 0.75);}\n",
" 3.33% {border-color: rgba(255, 0, 50, 0.5);}\n",
" 5.00% {border-color: rgba(255, 0, 75, 0.75);}\n",
" 6.67% {border-color: rgba(255, 0, 100, 1);}\n",
" 8.33% {border-color: rgba(255, 0, 125, 0.75);}\n",
" 10.00% {border-color: rgba(255, 0, 150, 0.5);}\n",
" 11.67% {border-color: rgba(255, 0, 175, 0.75);}\n",
" 13.33% {border-color: rgba(255, 0, 200, 1);}\n",
" 15.00% {border-color: rgba(255, 0, 225, 0.75);}\n",
" 16.67% {border-color: rgba(255, 0, 255, 0.5);}\n",
" 18.33% {border-color: rgba(225, 0, 255, 0.75);}\n",
" 20.00% {border-color: rgba(200, 0, 255, 1);}\n",
" 21.67% {border-color: rgba(175, 0, 255, 0.75);}\n",
" 23.33% {border-color: rgba(150, 0, 255, 0.5);}\n",
" 25.00% {border-color: rgba(125, 0, 255, 0.75);}\n",
" 26.67% {border-color: rgba(100, 0, 255, 1);}\n",
" 28.33% {border-color: rgba(75, 0, 255, 0.75);}\n",
" 30.00% {border-color: rgba(50, 0, 255, 0.5);}\n",
" 31.67% {border-color: rgba(25, 0, 255, 0.75);}\n",
" 33.33% {border-color: rgba(0, 0, 255, 1);}\n",
" 35.00% {border-color: rgba(0, 25, 255, 0.75);}\n",
" 36.67% {border-color: rgba(0, 50, 255, 0.5);}\n",
" 38.33% {border-color: rgba(0, 75, 255, 0.75);}\n",
" 40.00% {border-color: rgba(0, 100, 255, 1);}\n",
" 41.67% {border-color: rgba(0, 125, 255, 0.75);}\n",
" 43.33% {border-color: rgba(0, 150, 255, 0.5);}\n",
" 45.00% {border-color: rgba(0, 175, 255, 0.75);}\n",
" 46.67% {border-color: rgba(0, 200, 255, 1);}\n",
" 48.33% {border-color: rgba(0, 225, 255, 0.75);}\n",
" 50.00% {border-color: rgba(0, 255, 255, 0.5);}\n",
" 51.67% {border-color: rgba(0, 255, 225, 0.75);}\n",
" 53.33% {border-color: rgba(0, 255, 200, 1);}\n",
" 55.00% {border-color: rgba(0, 255, 175, 0.75);}\n",
" 56.67% {border-color: rgba(0, 255, 150, 0.5);}\n",
" 58.33% {border-color: rgba(0, 255, 125, 0.75);}\n",
" 60.00% {border-color: rgba(0, 255, 100, 1);}\n",
" 61.67% {border-color: rgba(0, 255, 75, 0.75);}\n",
" 63.33% {border-color: rgba(0, 255, 50, 0.5);}\n",
" 65.00% {border-color: rgba(0, 255, 25, 0.75);}\n",
" 66.67% {border-color: rgba(0, 255, 0, 1);}\n",
" 68.33% {border-color: rgba(25, 255, 0, 0.75);}\n",
" 70.00% {border-color: rgba(50, 255, 0, 0.5);}\n",
" 71.67% {border-color: rgba(75, 255, 0, 0.75);}\n",
" 73.33% {border-color: rgba(100, 255, 0, 1);}\n",
" 75.00% {border-color: rgba(125, 255, 0, 0.75);}\n",
" 76.67% {border-color: rgba(150, 255, 0, 0.5);}\n",
" 78.33% {border-color: rgba(175, 255, 0, 0.75);}\n",
" 80.00% {border-color: rgba(200, 255, 0, 1);}\n",
" 81.67% {border-color: rgba(225, 255, 0, 0.75);}\n",
" 83.33% {border-color: rgba(255, 255, 0, 0.5);}\n",
" 85.00% {border-color: rgba(255, 225, 0, 0.75);}\n",
" 86.67% {border-color: rgba(255, 200, 0, 1);}\n",
" 88.33% {border-color: rgba(255, 175, 0, 0.75);}\n",
" 90.00% {border-color: rgba(255, 150, 0, 0.5);}\n",
" 91.67% {border-color: rgba(255, 125, 0, 0.75);}\n",
" 93.33% {border-color: rgba(255, 100, 0, 1);}\n",
" 95.00% {border-color: rgba(255, 75, 0, 0.75);}\n",
" 96.67% {border-color: rgba(255, 50, 0, 0.5);}\n",
" 98.33% {border-color: rgba(255, 25, 0, 0.75);}\n",
" 100% {border-color: rgba(255, 0, 0, 1);}}\n",
"\n",
"@keyframes slide-blur-above {\n",
" from {\n",
" height: 0px;\n",
" opacity: 0;\n",
" filter: blur(100px);\n",
" }\n",
" to {\n",
" height: 455px;\n",
" opacity: 1;\n",
" filter: blur(0px);}}\n",
"\n",
".gradient-cn2 {\n",
" width: 750px;\n",
" height: 5px;\n",
" font-size: 0px;\n",
" background-image: var(--cn-gradient-bg2);\n",
" background-size: 800% 500%;\n",
" color: black;\n",
" border-radius: 2px;\n",
" border: 1px solid transparent;\n",
" display: inline-block;\n",
" animation: slideBackground 20s linear infinite, BorderPulse 7s infinite;\n",
" transition: all 0.3s ease-out;}\n",
"</style>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(HBox(children=(Button(description='Select All', style=ButtonStyle(), _dom_classes=('select-all-…"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "6dbdfd3b1b884e22ac0f5167f39cbc73",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Output()"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "236ed1266777460aa687db9bee92a63b",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Output()"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"''' Controlnet models '''\n",
"%run ~/asd/asd/controlnet.py"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "07448e32-6837-44db-bef3-4dd8217e538e",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"''' Checkpoint '''\n",
"%tempe\n",
"%cd -q ~/asd/models/Stable-diffusion/tmp_models\n",
"%download https://civitai.com/api/download/models/357609 Juggernaut-XL_V9-RDPhoto2-Lightning_4S.safetensors\n",
"\n",
"''' LoRa '''\n",
"%cd -q ~/asd/models/Lora/tmp_Lora\n",
"%download https://huggingface.co/Linaqruf/style-enhancer-xl-lora/resolve/main/style-enhancer-xl.safetensors style-enhancer-xl.safetensors\n",
"%download https://huggingface.co/Linaqruf/anime-detailer-xl-lora/resolve/main/anime-detailer-xl.safetensors anime-detailer-xl.safetensors"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "37044b9b-ccfe-45b5-a84a-f46909048e42",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"python: can't open file '/home/studio-lab-user/asd/zrun.py': [Errno 2] No such file or directory\n"
]
}
],
"source": [
"token = \"unoVaKYezHAC\"\n",
"\n",
"%cd -q ~/asd\n",
"!python zrun.py {token} --xformers --enable-insecure-extension-access --skip-torch-cuda-test --disable-console-progressbars --theme dark --disable-safe-unpickle"
]
},
{
"cell_type": "code",
"execution_count": 10,
"id": "c4b8fbc8-e892-4159-bc5e-27b9aa3ddd96",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/home/studio-lab-user/asd\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"Process Process-6:\n",
"Traceback (most recent call last):\n",
" File \"/home/studio-lab-user/.conda/envs/default/lib/python3.10/multiprocessing/process.py\", line 314, in _bootstrap\n",
" self.run()\n"
]
},
{
"ename": "KeyboardInterrupt",
"evalue": "",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)",
"\u001b[0;32m/tmp/ipykernel_93/4144396340.py\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 16\u001b[0m \u001b[0mp1\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstart\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 17\u001b[0m \u001b[0mp2\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstart\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 18\u001b[0;31m \u001b[0mp1\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mjoin\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 19\u001b[0m \u001b[0mp2\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mjoin\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.conda/envs/default/lib/python3.10/multiprocessing/process.py\u001b[0m in \u001b[0;36mjoin\u001b[0;34m(self, timeout)\u001b[0m\n\u001b[1;32m 147\u001b[0m \u001b[0;32massert\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_parent_pid\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0mos\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgetpid\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m'can only join a child process'\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 148\u001b[0m \u001b[0;32massert\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_popen\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m'can only join a started process'\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 149\u001b[0;31m \u001b[0mres\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_popen\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mwait\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtimeout\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 150\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mres\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 151\u001b[0m \u001b[0m_children\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdiscard\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.conda/envs/default/lib/python3.10/multiprocessing/popen_fork.py\u001b[0m in \u001b[0;36mwait\u001b[0;34m(self, timeout)\u001b[0m\n\u001b[1;32m 41\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 42\u001b[0m \u001b[0;31m# This shouldn't block if wait() returned successfully.\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 43\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mpoll\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mos\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mWNOHANG\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mtimeout\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;36m0.0\u001b[0m \u001b[0;32melse\u001b[0m \u001b[0;36m0\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 44\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mreturncode\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 45\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m~/.conda/envs/default/lib/python3.10/multiprocessing/popen_fork.py\u001b[0m in \u001b[0;36mpoll\u001b[0;34m(self, flag)\u001b[0m\n\u001b[1;32m 25\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mreturncode\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 26\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 27\u001b[0;31m \u001b[0mpid\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msts\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mos\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mwaitpid\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mpid\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mflag\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 28\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mOSError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 29\u001b[0m \u001b[0;31m# Child process not yet created. See #1731717\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;31mKeyboardInterrupt\u001b[0m: "
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" File \"/home/studio-lab-user/.conda/envs/default/lib/python3.10/multiprocessing/process.py\", line 108, in run\n",
" self._target(*self._args, **self._kwargs)\n",
" File \"/tmp/ipykernel_93/4144396340.py\", line 10, in run_command2\n",
" time.sleep(2)\n",
"KeyboardInterrupt\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"^C\n"
]
}
],
"source": [
"%cd ~/asd\n",
"from multiprocessing import Process\n",
"import time\n",
"\n",
"def run_command1():\n",
"# time.sleep(15)\n",
" !zrok share public http://localhost:7860 --headless\n",
"\n",
"def run_command2():\n",
" time.sleep(2)\n",
" !python launch.py --listen --xformers --enable-insecure-extension-access --skip-torch-cuda-test --theme dark --gradio-allowed-path \"/home\" --gradio-queue\n",
"\n",
"if __name__ == '__main__':\n",
" p1 = Process(target=run_command1)\n",
" p2 = Process(target=run_command2)\n",
" p1.start()\n",
" p2.start()\n",
" p1.join()\n",
" p2.join()"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "5c7ccbf7-b9ac-41b3-8fb9-380de3bec02d",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"python: can't open file '/home/studio-lab-user/asd/zrun.py': [Errno 2] No such file or directory\n"
]
}
],
"source": [
"token = \"unoVaKYezHAC\"\n",
"\n",
"%cd -q ~/asd\n",
"!python zrun.py {token} --allow-code --xformers --enable-insecure-extension-access --disable-console-progressbars --theme dark --gradio-allowed-path \"/home/studio-lab-user/asd/tmp\" --gradio-queue --gradio-allowed-path GRADIO_ALLOWED_PATH --disable-safe-unpickle"
]
},
{
"cell_type": "markdown",
"id": "b4b19ba2-ae2b-481b-9b39-be6eac7a0f77",
"metadata": {
"tags": []
},
"source": [
"## WEB UI"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "4cffd230-2fd0-49b2-a91d-eb5b826be801",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"python: can't open file '/home/studio-lab-user/asd/zrun.py': [Errno 2] No such file or directory\n"
]
}
],
"source": [
"token = \"D2p4c9sDUe5O\"\n",
"\n",
"%cd -q ~/asd\n",
"!python zrun.py {token} --allow-code --xformers --gradio-queue --enable-insecure-extension-access --disable-console-progressbars --theme dark --gradio-allowed-path \"/home/studio-lab-user/asd/tmp\" --gradio-queue --gradio-allowed-path GRADIO_ALLOWED_PATH --disable-safe-unpickle"
]
},
{
"cell_type": "code",
"execution_count": 13,
"id": "cd684085-b951-4aab-9dd4-e2f3a6ded1f4",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"Copy and Paste this command into Terminal\n",
"\n"
]
},
{
"data": {
"text/html": [
"<span style='color:orange;'>~/.zrok/bin/zrok invite</span>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"press Tab to move the cursor\n",
"or you can watch this short video https://youtu.be/prTD99GbWlQ\n",
"\n"
]
}
],
"source": [
"from IPython import get_ipython\n",
"from pathlib import Path\n",
"from nenen88 import say\n",
"\n",
"xxx = \"/home/studio-lab-user\"\n",
"\n",
"def zrok_install():\n",
" zrok = Path(f\"{xxx}/.zrok/bin\")\n",
" zrok.mkdir(parents=True, exist_ok=True)\n",
" url = \"https://github.com/openziti/zrok/releases/download/v0.4.25/zrok_0.4.25_linux_amd64.tar.gz\"\n",
" z = zrok / Path(url).name\n",
"\n",
" get_ipython().system(f\"curl -sLo {z} {url}\")\n",
" get_ipython().system(f\"tar -xzf {z} -C {zrok} --wildcards *zrok\")\n",
" get_ipython().system(f\"rm -rf {xxx}/.cache/* {z}\")\n",
"\n",
" print(\"\\nCopy and Paste this command into Terminal\\n\")\n",
" say(\"~/.zrok/bin/zrok invite{orange}\")\n",
" print(\"\"\"\n",
"press Tab to move the cursor\n",
"or you can watch this short video https://youtu.be/prTD99GbWlQ\n",
"\"\"\")\n",
"\n",
"zrok_install()"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "7b7232ca-c234-4899-88b8-21ad7b0b1971",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/home/studio-lab-user/asd/extensions\n",
"Cloning into 'sd-webui-reactor'...\n",
"remote: Enumerating objects: 1216, done.\u001b[K\n",
"remote: Counting objects: 100% (399/399), done.\u001b[K\n",
"remote: Compressing objects: 100% (170/170), done.\u001b[K\n",
"remote: Total 1216 (delta 321), reused 229 (delta 229), pack-reused 817\u001b[K\n",
"Receiving objects: 100% (1216/1216), 3.44 MiB | 9.12 MiB/s, done.\n",
"Resolving deltas: 100% (827/827), done.\n"
]
}
],
"source": [
"%cd /home/studio-lab-user/asd/extensions\n",
"!git clone https://github.com/Gourieff/sd-webui-reactor"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "b201e749-2765-4c3c-8663-8134916c1b2e",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Python 3.10.12 (main, Jul 5 2023, 18:54:27) [GCC 11.2.0]\n",
"Version: 1.9.3\n",
"Commit hash: 1c0a0c4c26f78c32095ebc7f8af82f5c04fca8c0\n",
"Installing installing requirements for sd-webui-system-control\n",
"Launching Web UI with arguments: --allow-code --ngrok 2bTfuOdDi5AqDeyAAtXgfZgArjP_54eYVnFNEbrcD6nQGCooq --xformers --enable-insecure-extension-access --disable-console-progressbars --theme dark --gradio-allowed-path /home --gradio-queue --disable-safe-unpickle\n",
"2024-05-20 11:46:39.537825: E external/local_xla/xla/stream_executor/cuda/cuda_dnn.cc:9261] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\n",
"2024-05-20 11:46:39.537875: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:607] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n",
"2024-05-20 11:46:39.539090: E external/local_xla/xla/stream_executor/cuda/cuda_blas.cc:1515] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\n",
"2024-05-20 11:46:41.199637: W tensorflow/compiler/tf2tensorrt/utils/py_utils.cc:38] TF-TRT Warning: Could not find TensorRT\n",
"ngrok authtoken detected, trying to connect...\n",
"ngrok connected to localhost:7860! URL: https://f7ef-3-136-172-40.ngrok-free.app\n",
"You can use this link after the launch is complete.\n",
"\u001b[1m[\u001b[0m-\u001b[1m]\u001b[0m ADetailer initialized. version: \u001b[1;36m24.5\u001b[0m.\u001b[1;36m0\u001b[0m, num models: \u001b[1;36m20\u001b[0m\n",
"\u001b[96mCivitAI Browser+\u001b[0m: Aria2 RPC started\n",
"\u001b[38;5;208m▶\u001b[0m Fast PNG Info\n",
"*** Error loading script: forge_layerdiffusion.py\n",
" Traceback (most recent call last):\n",
" File \"/home/studio-lab-user/asd/modules/scripts.py\", line 508, in load_scripts\n",
" script_module = script_loading.load_module(scriptfile.path)\n",
" File \"/home/studio-lab-user/asd/modules/script_loading.py\", line 13, in load_module\n",
" module_spec.loader.exec_module(module)\n",
" File \"<frozen importlib._bootstrap_external>\", line 883, in exec_module\n",
" File \"<frozen importlib._bootstrap>\", line 241, in _call_with_frames_removed\n",
" File \"/home/studio-lab-user/asd/extensions/sd-forge-layerdiffuse/scripts/forge_layerdiffusion.py\", line 11, in <module>\n",
" from lib_layerdiffusion.utils import rgba2rgbfp32, to255unit8, crop_and_resize_image, forge_clip_encode\n",
" File \"/home/studio-lab-user/asd/extensions/sd-forge-layerdiffuse/lib_layerdiffusion/utils.py\", line 3, in <module>\n",
" from ldm_patched.modules import model_management\n",
" ModuleNotFoundError: No module named 'ldm_patched'\n",
"\n",
"---\n",
"\u001b[38;5;208m▶\u001b[0m SD-Hub: \u001b[38;5;39mv3.2.1\u001b[0m\n",
"Using sqlite file: /home/studio-lab-user/asd/extensions/sd-webui-agent-scheduler/task_scheduler.sqlite3\n",
"Loading FABRIC v0.6.6\n",
"[sd-webui-freeu] Controlnet support: *disabled*\n",
"INFO:scripts.incantation_base:Incantation: Debug scripts are disabled. Set INCANT_DEBUG environment variable to enable them.\n",
"INFO:incantation_base.py:Incantation: Debug scripts are disabled. Set INCANT_DEBUG environment variable to enable them.\n",
"[sdwi2iextender] \u001b[0;33mDevelopper warning:\u001b[0m\n",
"[sdwi2iextender] \u001b[0;33m./modules/img2img.py is being recompiled at run time with a patch. Your debugger will not work in this file.\u001b[0m\n",
"[sdwi2iextender] \u001b[0;33mIf you need debug tools in this file, disable all extensions that use the sdwi2iextender library.\u001b[0m\n",
"[sdwi2iextender] \u001b[0;33mThis patch is temporary and will be removed when v1.9 will be released.\u001b[0m\n",
"Hypernetwork-MonkeyPatch-Extension not found\n",
"/home/studio-lab-user/asd/modules/gradio_extensons.py:55: GradioDeprecationWarning: `layout` parameter is deprecated, and it has no effect\n",
" res = original_BlockContext_init(self, *args, **kwargs)\n",
"/home/studio-lab-user/asd/modules/gradio_extensons.py:25: GradioDeprecationWarning: 'scale' value should be an integer. Using 0.2 will cause issues.\n",
" res = original_IOComponent_init(self, *args, **kwargs)\n",
"/home/studio-lab-user/asd/extensions/sd-webui-promptmaker/scripts/PromptMaker.py:185: GradioDeprecationWarning: 'scale' value should be an integer. Using 0.3 will cause issues.\n",
" with gr.Column(scale=0.3):\n",
"/home/studio-lab-user/asd/modules/gradio_extensons.py:25: GradioDeprecationWarning: 'scale' value should be an integer. Using 0.5 will cause issues.\n",
" res = original_IOComponent_init(self, *args, **kwargs)\n",
"[i] Loaded 26 resolutions!\n",
"[i] Updating SDXL styles from storage ...\n",
"[i] Reading SDXL styles from sdxl_styles_diva.json ...\n",
"[i] Reading SDXL styles from sdxl_styles_fooocus.json ...\n",
"[i] Reading SDXL styles from sdxl_styles_mre.json ...\n",
"[i] Reading SDXL styles from sdxl_styles_sai.json ...\n",
"[i] Reading SDXL styles from sdxl_styles_twri.json ...\n",
"[i] Loaded 213 styles!\n",
"[Vec. CC] Style Sheet Loaded...\n",
"Model already exists\n",
"Loading weights [7042d25e47] from /home/studio-lab-user/asd/models/Stable-diffusion/tmp_models/animeConfettiComrade_v3.safetensors\n",
"WARNING:incantation_base.py:Module CFG Combiner does not implement get_xyz_axis_options\n",
"WARNING:scripts.incantation_base:Module CFG Combiner does not implement get_xyz_axis_options\n",
"WARNING:py.warnings:/home/studio-lab-user/.conda/envs/default/lib/python3.10/site-packages/huggingface_hub/file_download.py:1132: FutureWarning: `resume_download` is deprecated and will be removed in version 1.0.0. Downloads always resume when possible. If you want to force a new download, use `force_download=True`.\n",
" warnings.warn(\n",
"\n",
"Creating model from config: /home/studio-lab-user/asd/repositories/generative-models/configs/inference/sd_xl_base.yaml\n",
"Loading VAE weights specified in settings: /home/studio-lab-user/asd/models/VAE/sdxl_vae.safetensors\n",
"Applying attention optimization: xformers... done.\n",
"Model loaded in 37.6s (load weights from disk: 1.8s, create model: 0.6s, apply weights to model: 32.5s, apply half(): 0.1s, load VAE: 1.6s, load textual inversion embeddings: 0.5s, calculate empty prompt: 0.3s).\n",
"add tab\n",
"[([button, button, button, button, button], button, gallery), ([button, button, button, button, button], button, gallery)]\n",
"WARNING:py.warnings:/home/studio-lab-user/asd/modules/gradio_extensons.py:55: GradioDeprecationWarning: `width` is deprecated in `Interface()`, please use it within `launch()` instead.\n",
" res = original_BlockContext_init(self, *args, **kwargs)\n",
"\n",
"Running on local URL: http://127.0.0.1:7860\n",
"\n",
"To create a public link, set `share=True` in `launch()`.\n",
"[RandomizerKeywords] Supported keywords: clip_skip, cfg_scale, seed, subseed, subseed_strength, sampler_name, steps, width, height, tiling, restore_faces, s_churn, s_tmin, s_tmax, s_noise, eta, ddim_discretize, denoising_strength, hr_scale, hr_upscaler, hr_second_pass_steps, hr_resize_x, hr_resize_y, mask_blur, inpainting_mask_weight, checkpoint, vae\n",
"\u001b[92mIIB Database file has been successfully backed up to the backup folder.\u001b[0m\n",
"Startup time: 113.5s (prepare environment: 27.2s, import torch: 4.3s, import gradio: 1.3s, setup paths: 9.0s, initialize shared: 0.4s, other imports: 0.8s, load scripts: 19.0s, create ui: 43.5s, gradio launch: 1.4s, app_started_callback: 6.6s).\n",
"Restoring base VAE\n",
"Applying attention optimization: xformers... done.\n",
"VAE weights loaded.\n",
"Loading VAE weights specified in settings: /home/studio-lab-user/asd/models/VAE/sdxl_vae.safetensors\n",
"Applying attention optimization: xformers... done.\n",
"VAE weights loaded.\n"
]
}
],
"source": [
"token = \"2bTfuOdDi5AqDeyAAtXgfZgArjP_54eYVnFNEbrcD6nQGCooq\"\n",
"\n",
"%tempe\n",
"%cd -q ~/asd\n",
"!python launch.py --allow-code --ngrok {token} --xformers --enable-insecure-extension-access --disable-console-progressbars --theme dark --gradio-allowed-path \"/home\" --gradio-queue --disable-safe-unpickle"
]
},
{
"cell_type": "markdown",
"id": "bfc58f9f-9be7-431e-9859-f75684eda0cf",
"metadata": {
"tags": []
},
"source": [
"## Extras"
]
},
{
"cell_type": "code",
"execution_count": 69,
"id": "bdf1c5e2-14ae-418b-aa87-3dfcf07e9135",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"Copy and Paste this command into Terminal\n",
"\n"
]
},
{
"data": {
"text/html": [
"<span style='color:orange;'>~/.zrok/bin/zrok invite</span>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"press Tab to move the cursor\n",
"or you can watch this short video https://youtu.be/prTD99GbWlQ\n",
"\n"
]
}
],
"source": [
"''' Run this cell to register a ZROK account '''\n",
"%run ~/asd/asd/zorok.py"
]
},
{
"cell_type": "markdown",
"id": "6b74f461-3a60-44fe-8d96-b6fe2f0105a5",
"metadata": {
"id": "bf5499c3-18fb-4325-8c37-5298751e4f97",
"slideshow": {
"slide_type": "skip"
},
"tags": []
},
"source": [
"#### Storage"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "fe9b41c3-932e-442c-9d5e-d43b83a8096d",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Size = 24.99 GB\n",
"Used = 9.65 GB | 38.6% \n",
"Free = 15.34 GB | 61.4% \n",
"\n",
"/.conda 0 KB\n",
"/.local 824 KB\n",
"/.ipython 1.2 MB\n",
"/.jupyter 24 KB\n",
"/.ipynb_checkpoints 500 KB\n",
"/.your-civitai-api-key 4 KB\n",
"/.cache 0 KB\n",
"/.zrok 76.3 MB\n",
"/.sagemaker 0 KB\n",
"/sagemaker-studiolab-notebooks 176 KB\n",
"/.nv 992 KB\n",
"/.config 4 KB\n",
"/.keras 4 KB\n",
"/.paddleseg 0 KB\n",
"/че то ошибки 0 KB\n",
"/check 13.2 MB\n",
"/ошибка 0 KB\n",
"/stable-diffusion-webui-GPU-temperature-protection 336 KB\n",
"/hm 218.8 MB\n",
"/рььььь 0 KB\n",
"/very slow loading 304.4 MB\n",
"/no very nude 18.1 MB\n",
"/sd-webui-enable-checker 632 KB\n",
"/neutral-prompt_COFI92_previous_year's_version 296 KB\n",
"/yoinked-style-adder 268 KB\n",
"/sd_webui_SAG 26.2 MB\n",
"/sd-webui-neutral-prompt_wbclark 384 KB\n",
"/sd-webui-reactor 6.0 MB\n",
"/sd-webui-gray-violet-primary-color 232 KB\n",
"/kerk 1.1 GB\n",
"/extensions 1.0 GB\n",
"/modules 3.7 MB\n",
"/outputs 207.8 MB\n",
"/models 5.2 GB\n",
"/embeddings 117.0 MB\n",
"/wqe 690.8 MB\n",
"/its fuck 10.3 MB\n",
"/a1111-stable-diffusion-webui-vram-estimator 296 KB\n",
"/Untitled Folder 1 0 KB\n",
"/WARNING 70.1 MB\n",
"/prompt-fusion-extension 412 KB\n",
"/i hek 380 KB\n",
"/sd-outpainting-server 8.1 MB\n",
"/stable-diffusion-webui-prompt-travel 88.0 MB\n",
"/MOM 12 KB\n",
"/repositories 214.0 MB\n",
"/scripts 356 KB\n",
"/ 9.3 GB\n"
]
}
],
"source": [
"''' Check Storage '''\n",
"!rm -rf ~/.cache/*\n",
"%storage /home/studio-lab-user/"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "9951220b-4c44-4e52-80db-9fe37ab3a6f2",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"''' Delete output images '''\n",
"!rm -rf ~/asd/outputs/* ~/.cache/*"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "ad29fba3-221f-4748-a0c1-9fef2c745c3f",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"''' Delete Stable Diffusion '''\n",
"%cd -q ~\n",
"!rm -rf ~/tmp/* ~/asd ~/tmp ~/.cache/*"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "f0a5bc00-697f-49bc-bd8b-f1ccb37c4774",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"%cd -q ~\n",
"!rm -rf ~tmp ~/.conda/*"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "9e058676-e9cc-4a39-aeae-c86852d44f5e",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"''' DELETE EVERYTHING , restart jupyterlab afterward '''\n",
"%delete /home/studio-lab-user"
]
},
{
"cell_type": "markdown",
"id": "89f767e5-2ab8-41b0-81ed-8fda5af53342",
"metadata": {
"tags": []
},
"source": [
"#### ```zip``` Output images"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "e264e27c-0b24-463a-8ac7-88571517d370",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"zipping : [▶▶▶▶▶▶▶▶▶▶▶▶▶▶▶▶▶▶▶▶▶▶▶▶▶▶] [394/394]\n"
]
}
],
"source": [
"%%zipping\n",
"\n",
"input_folder = '/home/studio-lab-user/asd/outputs'\n",
"output_folder = '/home/studio-lab-user'"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "69d48005-acf2-463e-8d99-fbb0f34e0f77",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "default:Python",
"language": "python",
"name": "conda-env-default-py"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.12"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
|