3

我使用 Rasa NLU 和 Rasa Core 制作了一个机器人。它连接到 Node.js 服务器和 React.js 前端。我运行这个 python 脚本的方式是:

var PythonShell = require('python-shell');

var options = {
    mode: 'text',
    pythonOptions: ['-u'],
    scriptPath: './server/Rasa_Bot_Final'
};

var pyshell = new PythonShell('dialogue_management_model.py', options);


app.post('/message', (req, res) => {
    pyshell.on('message', function (message) {
        // received a message sent from the Python script (a simple "print" statement)
        res.end(message)
    });
    pyshell.send(req.body.messageFromUser);
})

这适用于我的本地主机,但是,在部署到 heroku 时,我收到此错误:

Error: OSError: [E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

这是因为我无法运行:

python -m spacy download en_core_web_md
python -m spacy link en_core_web_md en

在heroku上。

有人可以帮我解决这个问题吗?

我参考了这些: https ://spacy.io/usage/

https://github.com/explosion/spaCy/issues/1099

4

2 回答 2

5

确保在需求中添加了 spacy 和包含 python 命令的 Procfile。

请参阅:Procfile 文档

Procfile 中

web: python -m spacy download en_core_web_md && python -m spacy link en_core_web_md en

如果它来自无法运行 python 代码的事实,那么它可能来自无法识别您的代码并相应地设置所有内容的测功机。

你应该检查一下,我认为这就是 heroku 所说的buildpack

于 2018-08-22T08:39:28.893 回答
1

首先,确保您的项目名称和 Heroku 应用程序的名称完全匹配。

以下对我有用:

Requirements.txt

flask
click
gunicorn==19.9.0
requests==2.21.0
spacy==2.0.11
sklearn-crfsuite==0.3.6
rasa-nlu==0.13.2
rasa-core==0.11.1
rasa-core-sdk==0.11.0

==================================================== =======

Procfile(假设您在app.py

web gunicorn app:app setup.wsgi --log-file -

==================================================== ======

下载 spaCyen模型:

然后在您的终端中登录到您的 Heroku 帐户:

$ heroku run bash -a rec-bot
$ python -m spacy download en
于 2019-02-09T00:39:32.160 回答