我是图像分类的新手。我正在尝试在 python 中使用 mxnet 解决 kaggle 上的问题。我试图运行一个脚本代码,这是该问题的解决方案之一。代码就像:
prefix="Inception/Inception-7"
num_round=1
network=model.FeedForward.load(prefix,num_round,ctx=mx.gpu(),numpy_batch_size=bx)
它显示错误:
MXNetError:[15:23:58] src/io/local_filesys.cc:149:检查失败:allow_null LocalFileSystem:无法打开“/Inception/Inception-7-symbol.json”
我什至更改了“前缀”中的路径,例如:
prefix="/home/Inception"
但我仍然不明白为什么它没有打开.json
文件并显示错误。我正在使用 Ubuntu 16.04。