ESRGAN
ESRGAN copied to clipboard
ERSGAN+ Interpolation
Interpolation doesn't seem to work with ERSGAN+ models. It throws the following error:
upscale.py, line 303, in load_model state_dict[k] = (int(interps[0].split("@")[1]) / 100) * v_1 + ( TypeError: unsupported operand type(s) for *: 'float' and 'collections.OrderedDict'
Looks like v_1 is an ordered dictionary for ERSGAN+ models rather than a tensor.
Huh that's interesting... I wonder if one of the models is using a param load key. My esrgan fork doesn't account for those at the moment