runtimeerror: [enforce fail at inline_container.cc:120] . archive does not contain any files

原因:代码中使用了python调用matlab相关库,pytorch使用load加载模型前,先运行了命令

import matlab
import matlab.engine

导致了一些未知的bug

解决方法:
先torch.load(xxx),再运行

import matlab
import matlab.engine

你可能感兴趣的:(python,matlab,pytorch)