HyeonwooNoh / DPPnet

DPPnet: Image Question Answering using Convolutional Neural Network with Dynamic Parameter Prediction
Other
95 stars 45 forks source link

bug in vqa_loader.lua #4

Closed warahul closed 8 years ago

warahul commented 8 years ago

Line 1874 "local is_cached = path.isfile(cache_path)" in vqa_loader.lua attempt to index global 'path' (a nil value) as it has not been declared anywhere.

HyeonwooNoh commented 8 years ago

You can check the following link. https://github.com/torch/paths

I guess this module is loaded in default and you could use this module without any declaration.

iamaaditya commented 8 years ago

@HyeonwooNoh You may close this issue. @warahul's issue was solved by require 'pl' , although strangely that should not have been required. Perhaps he has different version of Torch.