“torch.load“中出现的“Unexpected key(s) in state_dict“报错问题

问题:
在这里插入图片描述
解决:
“torch.load“中出现的“Unexpected key(s) in state_dict“报错问题_第1张图片
添加strict=False,允许加载过程中出现不匹配的键。但请注意,仍然需要确保模型中的主要参数能够正确加载,以确保模型的有效性。

model.load_state_dict(state_dict)
# 改为:
model.load_state_dict(state_dict, strict=False)

你可能感兴趣的:(python)