|
import logging as logger |
|
|
|
from .architecture.DAT import DAT |
|
from .architecture.face.codeformer import CodeFormer |
|
from .architecture.face.gfpganv1_clean_arch import GFPGANv1Clean |
|
from .architecture.face.restoreformer_arch import RestoreFormer |
|
from .architecture.HAT import HAT |
|
from .architecture.LaMa import LaMa |
|
from .architecture.OmniSR.OmniSR import OmniSR |
|
from .architecture.RRDB import RRDBNet as ESRGAN |
|
from .architecture.SCUNet import SCUNet |
|
from .architecture.SPSR import SPSRNet as SPSR |
|
from .architecture.SRVGG import SRVGGNetCompact as RealESRGANv2 |
|
from .architecture.SwiftSRGAN import Generator as SwiftSRGAN |
|
from .architecture.Swin2SR import Swin2SR |
|
from .architecture.SwinIR import SwinIR |
|
from .types import PyTorchModel |
|
|
|
|
|
class UnsupportedModel(Exception): |
|
pass |
|
|
|
|
|
def load_state_dict(state_dict) -> PyTorchModel: |
|
logger.debug(f"Loading state dict into pytorch model arch") |
|
|
|
state_dict_keys = list(state_dict.keys()) |
|
|
|
if "params_ema" in state_dict_keys: |
|
state_dict = state_dict["params_ema"] |
|
elif "params-ema" in state_dict_keys: |
|
state_dict = state_dict["params-ema"] |
|
elif "params" in state_dict_keys: |
|
state_dict = state_dict["params"] |
|
|
|
state_dict_keys = list(state_dict.keys()) |
|
|
|
if "body.0.weight" in state_dict_keys and "body.1.weight" in state_dict_keys: |
|
model = RealESRGANv2(state_dict) |
|
|
|
elif "f_HR_conv1.0.weight" in state_dict: |
|
model = SPSR(state_dict) |
|
|
|
elif ( |
|
"model" in state_dict_keys |
|
and "initial.cnn.depthwise.weight" in state_dict["model"].keys() |
|
): |
|
model = SwiftSRGAN(state_dict) |
|
|
|
elif "layers.0.residual_group.blocks.0.norm1.weight" in state_dict_keys: |
|
if ( |
|
"layers.0.residual_group.blocks.0.conv_block.cab.0.weight" |
|
in state_dict_keys |
|
): |
|
model = HAT(state_dict) |
|
elif "patch_embed.proj.weight" in state_dict_keys: |
|
model = Swin2SR(state_dict) |
|
else: |
|
model = SwinIR(state_dict) |
|
|
|
elif ( |
|
"toRGB.0.weight" in state_dict_keys |
|
and "stylegan_decoder.style_mlp.1.weight" in state_dict_keys |
|
): |
|
model = GFPGANv1Clean(state_dict) |
|
|
|
elif ( |
|
"encoder.conv_in.weight" in state_dict_keys |
|
and "encoder.down.0.block.0.norm1.weight" in state_dict_keys |
|
): |
|
model = RestoreFormer(state_dict) |
|
elif ( |
|
"encoder.blocks.0.weight" in state_dict_keys |
|
and "quantize.embedding.weight" in state_dict_keys |
|
): |
|
model = CodeFormer(state_dict) |
|
|
|
elif ( |
|
"model.model.1.bn_l.running_mean" in state_dict_keys |
|
or "generator.model.1.bn_l.running_mean" in state_dict_keys |
|
): |
|
model = LaMa(state_dict) |
|
|
|
elif "residual_layer.0.residual_layer.0.layer.0.fn.0.weight" in state_dict_keys: |
|
model = OmniSR(state_dict) |
|
|
|
elif "m_head.0.weight" in state_dict_keys and "m_tail.0.weight" in state_dict_keys: |
|
model = SCUNet(state_dict) |
|
|
|
elif "layers.0.blocks.2.attn.attn_mask_0" in state_dict_keys: |
|
model = DAT(state_dict) |
|
|
|
else: |
|
try: |
|
model = ESRGAN(state_dict) |
|
except: |
|
|
|
raise UnsupportedModel |
|
return model |
|
|