Skip to content

Commit 6bc11bf

Browse files
lsteinpsychedeliciouscyruschan360cyruswkc241
authored
Test installer (invoke-ai#1618)
* test linux install * try removing http from parsed requirements * pip install confirmed working on linux * ready for linux testing - rebuilt py3.10-linux-x86_64-cuda-reqs.txt to include pypatchmatch dependency. - point install.sh and install.bat to test-installer branch. * Updates MPS reqs * detect broken readline history files * fix download.pytorch.org URL * Test installer (Win 11) (invoke-ai#1620) Co-authored-by: Cyrus Chan <cyruswkc@hku.hk> * Test installer (MacOS 13.0.1 w/ torch==1.12.0) (invoke-ai#1621) * Test installer (Win 11) * Test installer (MacOS 13.0.1 w/ torch==1.12.0) Co-authored-by: Cyrus Chan <cyruswkc@hku.hk> * change sourceball to development for testing * Test installer (MacOS 13.0.1 w/ torch==1.12.1 & torchvision==1.13.1) (invoke-ai#1622) * Test installer (Win 11) * Test installer (MacOS 13.0.1 w/ torch==1.12.0) * Test installer (MacOS 13.0.1 w/ torch==1.12.1 & torchvision==1.13.1) Co-authored-by: Cyrus Chan <cyruswkc@hku.hk> Co-authored-by: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Co-authored-by: Cyrus Chan <82143712+cyruschan360@users.noreply.github.com> Co-authored-by: Cyrus Chan <cyruswkc@hku.hk>
1 parent 5897e51 commit 6bc11bf

12 files changed

Lines changed: 1060 additions & 499 deletions

environment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
environments-and-requirements/environment-mac.yml

environments-and-requirements/requirements-base.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ pudb
2323
pyreadline3
2424
pytorch-lightning==1.7.7
2525
realesrgan
26+
requests==2.25.1
2627
scikit-image>=0.19
2728
send2trash
2829
streamlit

frontend/dist/assets/index.678a45f6.js

Lines changed: 501 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

installer/install.bat

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@ if "%1" == "use-cache" (
1616
)
1717

1818
echo ***** Installing InvokeAI.. *****
19-
19+
echo "USING development BRANCH. REMEMBER TO CHANGE TO main BEFORE RELEASE"
2020
@rem Config
2121
set INSTALL_ENV_DIR=%cd%\installer_files\env
2222
@rem https://mamba.readthedocs.io/en/latest/installation.html
2323
set MICROMAMBA_DOWNLOAD_URL=https://github.com/cmdr2/stable-diffusion-ui/releases/download/v1.1/micromamba.exe
2424
set RELEASE_URL=https://github.com/invoke-ai/InvokeAI
25-
set RELEASE_SOURCEBALL=/archive/refs/heads/main.tar.gz
25+
#set RELEASE_SOURCEBALL=/archive/refs/heads/main.tar.gz
26+
# RELEASE_SOURCEBALL=/archive/refs/heads/test-installer.tar.gz
27+
RELEASE_SOURCEBALL=/archive/refs/heads/development.tar.gz
2628
set PYTHON_BUILD_STANDALONE_URL=https://github.com/indygreg/python-build-standalone/releases/download
2729
set PYTHON_BUILD_STANDALONE=20221002/cpython-3.10.7+20221002-x86_64-pc-windows-msvc-shared-install_only.tar.gz
2830

installer/install.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,13 @@ if [ "$OS_NAME" == "darwin" ] && [ "$OS_ARCH" == "arm64" ]; then
8080
fi
8181

8282
# config
83+
echo "USING development BRANCH. REMEMBER TO CHANGE TO main BEFORE RELEASE"
8384
INSTALL_ENV_DIR="$(pwd)/installer_files/env"
8485
MICROMAMBA_DOWNLOAD_URL="https://micro.mamba.pm/api/micromamba/${MAMBA_OS_NAME}-${MAMBA_ARCH}/latest"
8586
RELEASE_URL=https://github.com/invoke-ai/InvokeAI
86-
RELEASE_SOURCEBALL=/archive/refs/heads/main.tar.gz
87+
# RELEASE_SOURCEBALL=/archive/refs/heads/main.tar.gz
88+
# RELEASE_SOURCEBALL=/archive/refs/heads/test-installer.tar.gz
89+
RELEASE_SOURCEBALL=/archive/refs/heads/development.tar.gz
8790
PYTHON_BUILD_STANDALONE_URL=https://github.com/indygreg/python-build-standalone/releases/download
8891
if [ "$OS_NAME" == "darwin" ]; then
8992
PYTHON_BUILD_STANDALONE=20221002/cpython-3.10.7+20221002-${PY_ARCH}-apple-darwin-install_only.tar.gz

installer/py3.10-darwin-arm64-mps-reqs.txt

Lines changed: 447 additions & 424 deletions
Large diffs are not rendered by default.

installer/py3.10-darwin-x86_64-cpu-reqs.txt

Lines changed: 47 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# pip-compile --allow-unsafe --generate-hashes --output-file=installer/py3.10-darwin-x86_64-cpu-reqs.txt installer/requirements.in
66
#
7-
--extra-index-url https://download.pytorch.org/whl/cu116
7+
--extra-index-url https://download.pytorch.org/whl/torch_stable.html
88
--trusted-host https
99

1010
absl-py==1.3.0 \
@@ -987,6 +987,7 @@ numpy==1.23.4 \
987987
# pandas
988988
# pyarrow
989989
# pydeck
990+
# pypatchmatch
990991
# pytorch-lightning
991992
# pywavelets
992993
# qudida
@@ -1159,6 +1160,7 @@ pillow==9.3.0 \
11591160
# imageio
11601161
# k-diffusion
11611162
# matplotlib
1163+
# pypatchmatch
11621164
# realesrgan
11631165
# scikit-image
11641166
# streamlit
@@ -1294,6 +1296,9 @@ pyparsing==3.0.9 \
12941296
# via
12951297
# matplotlib
12961298
# packaging
1299+
pypatchmatch @ https://github.com/invoke-ai/PyPatchMatch/archive/129863937a8ab37f6bbcec327c994c0f932abdbc.zip \
1300+
--hash=sha256:4ad6ec95379e7d122d494ff76633cc7cf9b71330d5efda147fceba81e3dc6cd2
1301+
# via -r installer/requirements.in
12971302
pyreadline3==3.4.1 \
12981303
--hash=sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae \
12991304
--hash=sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb
@@ -1826,27 +1831,27 @@ toolz==0.12.0 \
18261831
--hash=sha256:2059bd4148deb1884bb0eb770a3cde70e7f954cfbbdc2285f1f2de01fd21eb6f \
18271832
--hash=sha256:88c570861c440ee3f2f6037c4654613228ff40c93a6c25e0eba70d17282c6194
18281833
# via altair
1829-
torch==1.12.0 ; platform_system == "Darwin" \
1830-
--hash=sha256:0399746f83b4541bcb5b219a18dbe8cade760aba1c660d2748a38c6dc338ebc7 \
1831-
--hash=sha256:0986685f2ec8b7c4d3593e8cfe96be85d462943f1a8f54112fc48d4d9fbbe903 \
1832-
--hash=sha256:13c7cca6b2ea3704d775444f02af53c5f072d145247e17b8cd7813ac57869f03 \
1833-
--hash=sha256:201abf43a99bb4980cc827dd4b38ac28f35e4dddac7832718be3d5479cafd2c1 \
1834-
--hash=sha256:2143d5fe192fd908b70b494349de5b1ac02854a8a902bd5f47d13d85b410e430 \
1835-
--hash=sha256:2568f011dddeb5990d8698cc375d237f14568ffa8489854e3b94113b4b6b7c8b \
1836-
--hash=sha256:3322d33a06e440d715bb214334bd41314c94632d9a2f07d22006bf21da3a2be4 \
1837-
--hash=sha256:349ea3ba0c0e789e0507876c023181f13b35307aebc2e771efd0e045b8e03e84 \
1838-
--hash=sha256:44a3804e9bb189574f5d02ccc2dc6e32e26a81b3e095463b7067b786048c6072 \
1839-
--hash=sha256:5ed69d5af232c5c3287d44cef998880dadcc9721cd020e9ae02f42e56b79c2e4 \
1840-
--hash=sha256:60d06ee2abfa85f10582d205404d52889d69bcbb71f7e211cfc37e3957ac19ca \
1841-
--hash=sha256:63341f96840a223f277e498d2737b39da30d9f57c7a1ef88857b920096317739 \
1842-
--hash=sha256:72207b8733523388c49d43ffcc4416d1d8cd64c40f7826332e714605ace9b1d2 \
1843-
--hash=sha256:7ddb167827170c4e3ff6a27157414a00b9fef93dea175da04caf92a0619b7aee \
1844-
--hash=sha256:844f1db41173b53fe40c44b3e04fcca23a6ce00ac328b7099f2800e611766845 \
1845-
--hash=sha256:a1325c9c28823af497cbf443369bddac9ac59f67f1e600f8ab9b754958e55b76 \
1846-
--hash=sha256:abbdc5483359b9495dc76e3bd7911ccd2ddc57706c117f8316832e31590af871 \
1847-
--hash=sha256:c0313438bc36448ffd209f5fb4e5f325b3af158cdf61c8829b8ddaf128c57816 \
1848-
--hash=sha256:e3e8348edca3e3cee5a67a2b452b85c57712efe1cc3ffdb87c128b3dde54534e \
1849-
--hash=sha256:fb47291596677570246d723ee6abbcbac07eeba89d8f83de31e3954f21f44879
1834+
torch==1.12.1 ; platform_system == "Darwin" \
1835+
--hash=sha256:03e31c37711db2cd201e02de5826de875529e45a55631d317aadce2f1ed45aa8 \
1836+
--hash=sha256:0b44601ec56f7dd44ad8afc00846051162ef9c26a8579dda0a02194327f2d55e \
1837+
--hash=sha256:42e115dab26f60c29e298559dbec88444175528b729ae994ec4c65d56fe267dd \
1838+
--hash=sha256:42f639501928caabb9d1d55ddd17f07cd694de146686c24489ab8c615c2871f2 \
1839+
--hash=sha256:4e1b9c14cf13fd2ab8d769529050629a0e68a6fc5cb8e84b4a3cc1dd8c4fe541 \
1840+
--hash=sha256:68104e4715a55c4bb29a85c6a8d57d820e0757da363be1ba680fa8cc5be17b52 \
1841+
--hash=sha256:69fe2cae7c39ccadd65a123793d30e0db881f1c1927945519c5c17323131437e \
1842+
--hash=sha256:6cf6f54b43c0c30335428195589bd00e764a6d27f3b9ba637aaa8c11aaf93073 \
1843+
--hash=sha256:743784ccea0dc8f2a3fe6a536bec8c4763bd82c1352f314937cb4008d4805de1 \
1844+
--hash=sha256:8a34a2fbbaa07c921e1b203f59d3d6e00ed379f2b384445773bd14e328a5b6c8 \
1845+
--hash=sha256:976c3f997cea38ee91a0dd3c3a42322785414748d1761ef926b789dfa97c6134 \
1846+
--hash=sha256:9b356aea223772cd754edb4d9ecf2a025909b8615a7668ac7d5130f86e7ec421 \
1847+
--hash=sha256:9c038662db894a23e49e385df13d47b2a777ffd56d9bcd5b832593fab0a7e286 \
1848+
--hash=sha256:a8320ba9ad87e80ca5a6a016e46ada4d1ba0c54626e135d99b2129a4541c509d \
1849+
--hash=sha256:b5dbcca369800ce99ba7ae6dee3466607a66958afca3b740690d88168752abcf \
1850+
--hash=sha256:bfec2843daa654f04fda23ba823af03e7b6f7650a873cdb726752d0e3718dada \
1851+
--hash=sha256:cd26d8c5640c3a28c526d41ccdca14cf1cbca0d0f2e14e8263a7ac17194ab1d2 \
1852+
--hash=sha256:e9c8f4a311ac29fc7e8e955cfb7733deb5dbe1bdaabf5d4af2765695824b7e0d \
1853+
--hash=sha256:f00c721f489089dc6364a01fd84906348fe02243d0af737f944fddb36003400d \
1854+
--hash=sha256:f3b52a634e62821e747e872084ab32fbcb01b7fa7dbb7471b6218279f02a178a
18501855
# via
18511856
# -r installer/requirements.in
18521857
# accelerate
@@ -1877,26 +1882,26 @@ torchmetrics==0.10.2 \
18771882
--hash=sha256:43757d82266969906fc74b6e80766fcb2a0d52d6c3d09e3b7c98cf3b733fd20c \
18781883
--hash=sha256:daa29d96bff5cff04d80eec5b9f5076993d6ac9c2d2163e88b6b31f8d38f7c25
18791884
# via pytorch-lightning
1880-
torchvision==0.13.0 ; platform_system == "Darwin" \
1881-
--hash=sha256:01e9e7b2e7724e66561e8d98f900985d80191e977c5c0b3f33ed31800ba0210c \
1882-
--hash=sha256:0e28740bd5695076f7c449af650fc474d6566722d446461c2ceebf9c9599b37f \
1883-
--hash=sha256:1b703701f0b99f307ad925b1abda2b3d5bdbf30643ff02102b6aeeb8840ae278 \
1884-
--hash=sha256:1e2049f1207631d42d743205f663f1d2235796565be3f18b0339d479626faf30 \
1885-
--hash=sha256:253eb0c67bf88cef4a79ec69058c3e94f9fde28b9e3699ad1afc0b3ed50f8075 \
1886-
--hash=sha256:42d95ab197d090efc5669fec02fbc603d05c859e50ca2c60180d1a113aa9b3e2 \
1887-
--hash=sha256:5c31e9b3004142dbfdf32adc4cf2d4fd709b820833e9786f839ae3a91ff65ef0 \
1888-
--hash=sha256:61d5093a50b7923a4e5bf9e0271001c29e01abec2348b7dd93370a0a9d15836c \
1889-
--hash=sha256:667cac55afb13cda7d362466e7eba3119e529b210e55507d231bead09aca5e1f \
1890-
--hash=sha256:6c4c35428c758adc485ff8f239b5ed68c1b6c26efa261a52e431cab0f7f22aec \
1891-
--hash=sha256:83a4d9d50787d1e886c94486b63b15978391f6cf1892fce6a93132c09b14e128 \
1892-
--hash=sha256:a20662c11dc14fd4eff102ceb946a7ee80b9f98303bb52435cc903f2c4c1fe10 \
1893-
--hash=sha256:acb72a40e5dc0cd454d28514dbdd589a5057afd9bb5c785b87a54718b999bfa1 \
1894-
--hash=sha256:ad458146aca15f652f9b0c227bebd5403602c7341f15f68f20ec119fa8e8f4a5 \
1895-
--hash=sha256:ada295dbfe55017b02acfab960a997387f5addbadd28ee5e575e24f692992ce4 \
1896-
--hash=sha256:b620a43df4131ad09f5761c415a016a9ea95aaf8ec8c91d030fb59bad591094a \
1897-
--hash=sha256:b7a2c9aebc7ef265777fe7e82577364288d98cf6b8cf0a63bb2621df78a7af1a \
1898-
--hash=sha256:c2278a189663087bb8e65915062aa7a25b8f8e5a3cfaa5879fe277e23e4bbf40 \
1899-
--hash=sha256:df16abf31e7a5fce8db1f781bf1e4f20c8bc730c7c3f657e946cc5820c04e465
1885+
torchvision==0.13.1 ; platform_system == "Darwin" \
1886+
--hash=sha256:0298bae3b09ac361866088434008d82b99d6458fe8888c8df90720ef4b347d44 \
1887+
--hash=sha256:08f592ea61836ebeceb5c97f4d7a813b9d7dc651bbf7ce4401563ccfae6a21fc \
1888+
--hash=sha256:099874088df104d54d8008f2a28539ca0117b512daed8bf3c2bbfa2b7ccb187a \
1889+
--hash=sha256:0e77706cc90462653620e336bb90daf03d7bf1b88c3a9a3037df8d111823a56e \
1890+
--hash=sha256:19286a733c69dcbd417b86793df807bd227db5786ed787c17297741a9b0d0fc7 \
1891+
--hash=sha256:3567fb3def829229ec217c1e38f08c5128ff7fb65854cac17ebac358ff7aa309 \
1892+
--hash=sha256:4d8bf321c4380854ef04613935fdd415dce29d1088a7ff99e06e113f0efe9203 \
1893+
--hash=sha256:5e631241bee3661de64f83616656224af2e3512eb2580da7c08e08b8c965a8ac \
1894+
--hash=sha256:7552e80fa222252b8b217a951c85e172a710ea4cad0ae0c06fbb67addece7871 \
1895+
--hash=sha256:7cb789ceefe6dcd0dc8eeda37bfc45efb7cf34770eac9533861d51ca508eb5b3 \
1896+
--hash=sha256:83e9e2457f23110fd53b0177e1bc621518d6ea2108f570e853b768ce36b7c679 \
1897+
--hash=sha256:87c137f343197769a51333076e66bfcd576301d2cd8614b06657187c71b06c4f \
1898+
--hash=sha256:899eec0b9f3b99b96d6f85b9aa58c002db41c672437677b553015b9135b3be7e \
1899+
--hash=sha256:8e4d02e4d8a203e0c09c10dfb478214c224d080d31efc0dbf36d9c4051f7f3c6 \
1900+
--hash=sha256:b167934a5943242da7b1e59318f911d2d253feeca0d13ad5d832b58eed943401 \
1901+
--hash=sha256:c5ed609c8bc88c575226400b2232e0309094477c82af38952e0373edef0003fd \
1902+
--hash=sha256:e9a563894f9fa40692e24d1aa58c3ef040450017cfed3598ff9637f404f3fe3b \
1903+
--hash=sha256:ef5fe3ec1848123cd0ec74c07658192b3147dcd38e507308c790d5943e87b88c \
1904+
--hash=sha256:f230a1a40ed70d51e463ce43df243ec520902f8725de2502e485efc5eea9d864
19001905
# via
19011906
# -r installer/requirements.in
19021907
# basicsr

installer/py3.10-linux-x86_64-cuda-reqs.txt

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile with python 3.10
2+
# This file is autogenerated by pip-compile with python 3.9
33
# To update, run:
44
#
55
# pip-compile --allow-unsafe --generate-hashes --output-file=installer/py3.10-linux-x86_64-cuda-reqs.txt installer/requirements.in
@@ -583,6 +583,8 @@ importlib-metadata==5.0.0 \
583583
--hash=sha256:ddb0e35065e8938f867ed4928d0ae5bf2a53b7773871bfe6bcc7e4fcdc7dea43
584584
# via
585585
# diffusers
586+
# flask
587+
# markdown
586588
# streamlit
587589
itsdangerous==2.1.2 \
588590
--hash=sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44 \
@@ -987,6 +989,7 @@ numpy==1.23.4 \
987989
# pandas
988990
# pyarrow
989991
# pydeck
992+
# pypatchmatch
990993
# pytorch-lightning
991994
# pywavelets
992995
# qudida
@@ -1159,6 +1162,7 @@ pillow==9.3.0 \
11591162
# imageio
11601163
# k-diffusion
11611164
# matplotlib
1165+
# pypatchmatch
11621166
# realesrgan
11631167
# scikit-image
11641168
# streamlit
@@ -1294,6 +1298,9 @@ pyparsing==3.0.9 \
12941298
# via
12951299
# matplotlib
12961300
# packaging
1301+
pypatchmatch @ https://github.com/invoke-ai/PyPatchMatch/archive/129863937a8ab37f6bbcec327c994c0f932abdbc.zip \
1302+
--hash=sha256:4ad6ec95379e7d122d494ff76633cc7cf9b71330d5efda147fceba81e3dc6cd2
1303+
# via -r installer/requirements.in
12971304
pyreadline3==3.4.1 \
12981305
--hash=sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae \
12991306
--hash=sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb
@@ -1931,9 +1938,7 @@ typing-extensions==4.4.0 \
19311938
tzdata==2022.6 \
19321939
--hash=sha256:04a680bdc5b15750c39c12a448885a51134a27ec9af83667663f0b3a1bf3f342 \
19331940
--hash=sha256:91f11db4503385928c15598c98573e3af07e7229181bee5375bd30f1695ddcae
1934-
# via
1935-
# pytz-deprecation-shim
1936-
# tzlocal
1941+
# via pytz-deprecation-shim
19371942
tzlocal==4.2 \
19381943
--hash=sha256:89885494684c929d9191c57aa27502afc87a579be5cdd3225c77c463ea043745 \
19391944
--hash=sha256:ee5842fa3a795f023514ac2d801c4a81d1743bbe642e3940143326b3a00addd7

installer/py3.10-windows-x86_64-cuda-reqs.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -993,6 +993,7 @@ numpy==1.23.4 \
993993
# pandas
994994
# pyarrow
995995
# pydeck
996+
# pypatchmatch
996997
# pytorch-lightning
997998
# pywavelets
998999
# qudida
@@ -1165,6 +1166,7 @@ pillow==9.3.0 \
11651166
# imageio
11661167
# k-diffusion
11671168
# matplotlib
1169+
# pypatchmatch
11681170
# realesrgan
11691171
# scikit-image
11701172
# streamlit
@@ -1300,6 +1302,9 @@ pyparsing==3.0.9 \
13001302
# via
13011303
# matplotlib
13021304
# packaging
1305+
pypatchmatch @ https://github.com/invoke-ai/PyPatchMatch/archive/129863937a8ab37f6bbcec327c994c0f932abdbc.zip \
1306+
--hash=sha256:4ad6ec95379e7d122d494ff76633cc7cf9b71330d5efda147fceba81e3dc6cd2
1307+
# via -r installer/requirements.in
13031308
pyreadline3==3.4.1 \
13041309
--hash=sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae \
13051310
--hash=sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb

installer/requirements.in

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,27 @@
44
accelerate~=0.14
55
albumentations
66
diffusers
7-
einops
87
eventlet
9-
facexlib
108
flask_cors
119
flask_socketio
1210
flaskwebgui
1311
getpass_asterisk
1412
imageio-ffmpeg
15-
kornia
16-
numpy
1713
pyreadline3
1814
realesrgan
19-
requests==2.25.1
2015
send2trash
2116
streamlit
2217
taming-transformers-rom1504
2318
test-tube
2419
torch-fidelity
25-
torch
26-
torchvision
20+
torch==1.12.1 ; platform_system == 'Darwin'
21+
torch==1.12.0+cu116 ; platform_system == 'Linux' or platform_system == 'Windows'
22+
torchvision==0.13.1 ; platform_system == 'Darwin'
23+
torchvision==0.13.0+cu116 ; platform_system == 'Linux' or platform_system == 'Windows'
2724
transformers
2825
picklescan
29-
clip
30-
clipseg
31-
gfpgan
32-
k-diffusion
33-
pypatchmatch
26+
https://github.com/openai/CLIP/archive/d50d76daa670286dd6cacf3bcd80b5e4823fc8e1.zip
27+
https://github.com/invoke-ai/clipseg/archive/1f754751c85d7d4255fa681f4491ff5711c1c288.zip
28+
https://github.com/TencentARC/GFPGAN/archive/2eac2033893ca7f427f4035d80fe95b92649ac56.zip
29+
https://github.com/invoke-ai/k-diffusion/archive/7f16b2c33411f26b3eae78d10648d625cb0c1095.zip
30+
https://github.com/invoke-ai/PyPatchMatch/archive/129863937a8ab37f6bbcec327c994c0f932abdbc.zip

0 commit comments

Comments
 (0)