I am new to image classification. I am trying to solve a problem on kaggle using mxnet in python. I was trying to run a script code which is one of the solutions for that problem. Code was like :
prefix="Inception/Inception-7"
num_round=1
network=model.FeedForward.load(prefix,num_round,ctx=mx.gpu(),numpy_batch_size=bx)
It is showing error :
MXNetError: [15:23:58] src/io/local_filesys.cc:149: Check failed: allow_null LocalFileSystem: fail to open "/Inception/Inception-7-symbol.json"
I have even changed path in the "prefix" like :
prefix="/home/Inception"
But still I am not understanding why it is not opening the .json
file and showing the error. I am using Ubuntu 16.04.