diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-02-19 09:16:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-19 09:16:58 +0000 |
commit | b63a13c5ed99f7689031baff5cbd0e24a3939318 (patch) | |
tree | beb120aec08e15d28fc39827aa9e655795ed4c9f /modules/esrgan_model_arch.py | |
parent | e287d9b2940b13c2d19dd59750e8cde7e53cbbd8 (diff) | |
parent | 3ca41dbded119509bb66d7952d403091a5543257 (diff) | |
download | stable-diffusion-webui-gfx803-b63a13c5ed99f7689031baff5cbd0e24a3939318.tar.gz stable-diffusion-webui-gfx803-b63a13c5ed99f7689031baff5cbd0e24a3939318.tar.bz2 stable-diffusion-webui-gfx803-b63a13c5ed99f7689031baff5cbd0e24a3939318.zip |
Merge pull request #7651 from vladmandic/missing-imports
Add missing imports
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
|