我正在使用RASA
堆栈创建一个天气机器人。我正在尝试访问NLU Trainer GUI
但是收到错误。
它说,即使我创建了一个JSON文件,它也找不到培训文件。它存储在 - Desktop/weather_bot/data
。我还成功安装了nlu培训师
sudo npm i -g rasa-nlu-trainer
但是当我尝试使用rasa-nlu-trainer访问GUI时,我收到以下错误
Desktop/weather_bot/data/data.json
searching for the training examples...
(node:31971) UnhandledPromiseRejectionWarning: Error: Can't find training file, please try to specify it with the --source option
at checkDone (/usr/local/lib/node_modules/rasa-nlu-trainer/server.js:98:15)
at readData.then.catch.then (/usr/local/lib/node_modules/rasa-nlu-trainer/server.js:128:11)
at <anonymous>
(node:31971) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:31971) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
\
答案 0 :(得分:1)
通常由于server.js中的这行代码if(!json.rasa_nlu_data){ return reject("....") }
而引发此错误,要解决此问题,请尝试将{"rasa_nlu_data": {
作为data.json文件中的第一行代码或您的培训数据文件,希望这可以解决您的问题,
答案 1 :(得分:1)
我遇到了同样的问题。我在data.json文件的第一行代码中包含了{“ rasa_nlu_data”:{。但是我发现我的JSON文件有点错误。我在最后的JSON数据中添加了逗号。因此,请检查您的JSON文件是否正常。我想如果还可以的话就可以了。
答案 2 :(得分:0)
此命令应该有效。
rasa-nlu-trainer --source Desktop/weather_bot/data/data.json