-
There was a PR #2092 that added support for SwinIR v2, and it had 2 files swinir_model.py and swinir_model_arch_v2.py. Now we only have swinir_model.py in the extensions-builtin SwinIR. We also have a warning when upscaling: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
unless I'm very much mistaken, yes it is supported basically quite a while back we switched to a different framework for upscaling called spandrel and basically if it loads it works as mentioned by akx upscale models should work even if you drop them into the wrong folder in a way that warning message is basically telling you that it's going to use the tiling settings of the expected architecture |
Beta Was this translation helpful? Give feedback.
unless I'm very much mistaken, yes it is supported
basically quite a while back we switched to a different framework for upscaling called spandrel
and basically if it loads it works
the warning message not is just a warning not an error
it's basically just telling you that
"hey!! I was supposed to be loading a
SwinIR
model but the model you gave me is aSwin2SR
model, it's working but it's not what I was expecting"as mentioned by akx upscale models should work even if you drop them into the wrong folder
the only issue is that when you do so it will still use the same tiling settings as the architecture of the folder
in a way that warning message is basically telling yo…