自定义语料库未加载到chatterbot django应用中

时间:2019-03-25 00:40:34

标签: python django chatterbot

我正在尝试使用chatterbot django integration示例代码中的thisdjango构建chatterbot应用。

我想使用chatterbot.corpus.bangla的自定义语料库。

我的settings.py具有以下内容:

# ChatterBot settings

CHATTERBOT = {
    'name': 'Django ChatterBot Example',
    'django_app_name': 'django_chatterbot',
    'trainer': 'chatterbot.trainers.ChatterBotCorpusTrainer',
    'training_data': ['chatterbot.corpus.bangla']
}

但是在测试聊天机器人时,我没有得到这个语料库的回复。第一个答复只是给定输入的回显,这意味着聊天机器人当前为 未经培训

enter image description here

我同时运行了python manage.py migrate django_chatterbotpython manage.py migrate并重新启动了服务器。

但还是同样的问题。

如何确保chatterbot使用我所说的语料库?

谢谢。

0 个答案:

没有答案