The pytorch's version >=1.0,so I can't use from torch.utils.serialization import load_lua
and I can't run vgglua = load_lua(os.path.join(model_dir, 'vgg16.t7')) in utils.py
if I choose import torchfile and vgglua = torchfile.load(os.path.join(model_dir, 'vgg16.t7')), will wrong in TypeError: unhashable type: 'numpy.ndarray'
What should I do?