diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-02-19 09:41:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-19 09:41:29 +0000 |
commit | dfb3b8f398239876cdfc03657680e50c76a1fed8 (patch) | |
tree | 30b5b4e5a179e9d88e75ac0abdcf0090e1c74397 /modules/esrgan_model_arch.py | |
parent | edb10092de516dda5271130ed53628387780a859 (diff) | |
parent | 43137773227344dd79b56c227dbc9fb54ac7c337 (diff) | |
download | stable-diffusion-webui-gfx803-dfb3b8f398239876cdfc03657680e50c76a1fed8.tar.gz stable-diffusion-webui-gfx803-dfb3b8f398239876cdfc03657680e50c76a1fed8.tar.bz2 stable-diffusion-webui-gfx803-dfb3b8f398239876cdfc03657680e50c76a1fed8.zip |
Merge branch 'master' into weighted-learning
Diffstat (limited to 'modules/esrgan_model_arch.py')
-rw-r--r-- | modules/esrgan_model_arch.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/esrgan_model_arch.py b/modules/esrgan_model_arch.py index bc9ceb2a..1b52b0f5 100644 --- a/modules/esrgan_model_arch.py +++ b/modules/esrgan_model_arch.py @@ -1,5 +1,6 @@ # this file is adapted from https://github.com/victorca25/iNNfer
+from collections import OrderedDict
import math
import functools
import torch
|