Compare commits

..

3 Commits

Author SHA1 Message Date
Lincoln Stein
8e95eb9e81 bump patch level 2022-12-31 17:43:09 +00:00
Lincoln Stein
f56bf3ef54 fix formatting error during startup 2022-12-31 17:42:47 +00:00
Lincoln Stein
0faae1b594 use invoke-ai version of GFPGAN
- This version is very slightly modified to allow weights files
  to be pre-downloaded by the configure script.
2022-12-31 17:41:00 +00:00
3 changed files with 3 additions and 2 deletions

View File

@@ -35,5 +35,6 @@ torchmetrics
transformers==4.25.*
https://github.com/Birch-san/k-diffusion/archive/refs/heads/mps.zip#egg=k-diffusion
https://github.com/invoke-ai/PyPatchMatch/archive/refs/tags/0.1.5.zip#egg=pypatchmatch
https://github.com/invoke-ai/GFPGAN/archive/refs/heads/master.zip#egg=gfpgan
https://github.com/openai/CLIP/archive/eaa22acb90a5876642d0507623e859909230a52d.zip#egg=clip
https://github.com/invoke-ai/clipseg/archive/relaxed-python-requirement.zip#egg=clipseg

View File

@@ -3,7 +3,7 @@
cd "$(dirname "$0")"
VERSION=$(grep ^VERSION ../setup.py | awk '{ print $3 }' | sed "s/'//g" )
PATCH="-rc7"
PATCH="-rc8"
VERSION="${VERSION}${PATCH}"
echo "Be certain that you're in the 'installer' directory before continuing."

View File

@@ -243,7 +243,7 @@ class ModelCache(object):
if 'state_dict' in sd:
sd = sd['state_dict']
print(f' | Forcing garbage collection prior to loading new model')
print(f' | Forcing garbage collection prior to loading new model')
gc.collect()
model = instantiate_from_config(omega_config.model)
model.load_state_dict(sd, strict=False)