diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-07 09:57:12 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-07 09:57:12 +0000 |
commit | 5e12c23a67034a73cd3d9af5c6b7c194e0862e66 (patch) | |
tree | 5b86d4e4bf095ccf4127e223024144eb015059e3 /modules/codeformer | |
parent | 6a9b33c848281cb02f38764e4f91ef767f5e3edd (diff) | |
download | stable-diffusion-webui-gfx803-5e12c23a67034a73cd3d9af5c6b7c194e0862e66.tar.gz stable-diffusion-webui-gfx803-5e12c23a67034a73cd3d9af5c6b7c194e0862e66.tar.bz2 stable-diffusion-webui-gfx803-5e12c23a67034a73cd3d9af5c6b7c194e0862e66.zip |
clarification for settings; another comment about copied files
Diffstat (limited to 'modules/codeformer')
-rw-r--r-- | modules/codeformer/codeformer_arch.py | 2 | ||||
-rw-r--r-- | modules/codeformer/vqgan_arch.py | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/modules/codeformer/codeformer_arch.py b/modules/codeformer/codeformer_arch.py index 0eff93dc..11dcc3ee 100644 --- a/modules/codeformer/codeformer_arch.py +++ b/modules/codeformer/codeformer_arch.py @@ -1,3 +1,5 @@ +# this file is copied from CodeFormer repository. Please see comment in modules/codeformer_model.py + import math import numpy as np import torch diff --git a/modules/codeformer/vqgan_arch.py b/modules/codeformer/vqgan_arch.py index f6dfcf4c..c06c590c 100644 --- a/modules/codeformer/vqgan_arch.py +++ b/modules/codeformer/vqgan_arch.py @@ -1,3 +1,5 @@ +# this file is copied from CodeFormer repository. Please see comment in modules/codeformer_model.py + ''' VQGAN code, adapted from the original created by the Unleashing Transformers authors: https://github.com/samb-t/unleashing-transformers/blob/master/models/vqgan.py |