如何使用Chatterbot(版本--0.7.4)制作询问问题的ChatBot?

时间:2018-06-29 12:18:05

标签: python-3.x chatbot chatterbot

使用python创建了一个聊天机器人,它正在工作的流程是我正在发送消息,并据此聊天机器人正在回复。 但是应该相反地进行,即聊天机器人应该首先通过欢迎/提问开始,然后用户将对此进行回复。 请建议在代码中进行一些转换,以便可以相应地工作。 预先谢谢你。

上述代码如下:

from chatterbot import ChatBot
from chatterbot.trainers import ListTrainer
import os

bot = ChatBot('Bot')
bot.set_trainer(ListTrainer)

for files in os.listdir('C:/Users/Username\Desktop\chatterbot\chatterbot_corpus\data/english/'):
    data = open('C:/Users/Username\Desktop\chatterbot\chatterbot_corpus\data/english/' + files, 'r').readlines()
    bot.train(data)

while True:
    message = input('You: ')
    if message.strip() != 'Bye'.lower():
        reply = bot.get_response(message)
        print('ChatBot:',reply)
    if message.strip() == 'Bye'.lower():
        print('ChatBot: Bye')
        break

1 个答案:

答案 0 :(得分:0)

我认为您应该相应地训练您的机器人。我的意思是从答案开始,然后将后续对话添加到训练数据中。
例如,训练数据应该是这样的。

data = [
    "Tony",        #I started with an answer
    "that's a good name",
    "thank you",
     "you are welcome"]

然后使用诸如 print(“ chatBot:hai,你叫什么名字?”) 我在下面添加了示例代码段。

data = [
     "Tony",
     "that's a good name",
    "thank you",
     "you are welcome"]
bot.train(data)

print("chatbot: what is your name?")
message = input("you: ")

while True:
    if message.strip() != 'Bye'.lower():
        reply = bot.get_response(message)
        print('ChatBot:',reply)
    if message.strip() == 'Bye'.lower():
        print('ChatBot: Bye')
        break
    message = input("you: ")

来自docs
在培训过程中,您将需要传递一个语句列表,其中每个语句的顺序基于其在给定对话中的位置。
例如,如果您要运行以下训练电话的机器人,那么生成的聊天机器人将通过说“你好”来响应“嗨,好!”和“问候!”这两个说法。

from chatterbot.trainers import ListTrainer

chatterbot = ChatBot("Training Example")
chatterbot.set_trainer(ListTrainer)

chatterbot.train([
    "Hi there!",
    "Hello",
])

chatterbot.train([
    "Greetings!",
    "Hello",
])

这意味着您的问答顺序很重要。 当您训练两个句子时,机器人会以第一个为问题,第二个为答案。