Pytorch 0.3加载0.4模型

Posted ranjiewen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pytorch 0.3加载0.4模型相关的知识,希望对你有一定的参考价值。

- pytorch0.4有一些接口已经改变,且模型向下版本兼容,不向上兼容。

使用pytorch0.3导入pytorch0.4保存的模型时候:

 Monkey-patch because I trained with a newer version.
# This can be removed once PyTorch 0.4.x is out.
# See https://discuss.pytorch.org/t/question-about-rebuild-tensor-v2/14560
import torch._utils
try:
    torch._utils._rebuild_tensor_v2
except AttributeError:
    def _rebuild_tensor_v2(storage, storage_offset, size, stride, requires_grad, backward_hooks):
        tensor = torch._utils._rebuild_tensor(storage, storage_offset, size, stride)
        tensor.requires_grad = requires_grad
        tensor._backward_hooks = backward_hooks
        return tensor
    torch._utils._rebuild_tensor_v2 = _rebuild_tensor_v2

以上是关于Pytorch 0.3加载0.4模型的主要内容,如果未能解决你的问题,请参考以下文章

B1049 数列的片段和

1049. 数列的片段和(20)

1049 数列的片段和 (20 分)

PAT-乙级-1049 数列的片段和

PAT 1049. 数列的片段和

text