使用 Torch RNN 时出错

Error using Torch RNN

我正在按照 github.com/jcjohnson/torch-rnn 上的说明进行操作,直到培训部分为止。当我使用 th train.lua -input_h5 my_data.h5 -input_json my_data.json 时出现错误 Error: unable to locate HDF5 header file at /usr/local/Cellar/hdf5/1.10.0-patch1/include;/usr/include;/usr/local/opt/szip/include/hdf5.h 我是 luarocks 和火炬的新手,所以我不确定出了什么问题。我安装了 torch-hd5f。任何建议将不胜感激。

检查头文件是否存在以及您的路径是否正确。

如果缺少头文件,则您跳过了预处理步骤。如果头文件存在,它可能位于您的数据目录中,而不是与 sample.lua 代码位于同一目录中: th train.lua -input_h5 data/my_data.h5 -input_json data/my_data.json