You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In myutils/utils.py, from torch.utils.serialization import load_lua
should be changed above import torchfile
and vgglua = load_lua(os.path.join(model_folder, 'vgg16.t7'))
should be changed above vgglua = torchfile.load(os.path.join(model_folder, 'vgg16.t7'))
The text was updated successfully, but these errors were encountered:
In myutils/utils.py,
from torch.utils.serialization import load_lua
should be changed above
import torchfile
and
vgglua = load_lua(os.path.join(model_folder, 'vgg16.t7'))
should be changed above
vgglua = torchfile.load(os.path.join(model_folder, 'vgg16.t7'))
The text was updated successfully, but these errors were encountered: