How best to store data for a chatbot?

后端 未结 4 1756
无人及你
无人及你 2021-02-06 16:39

I was looking on the internet for chatbots. It was only fun. But now, I love this subject so much that I want to develop my own chatbot.
But the first thing is to l

4条回答
  •  野性不改
    2021-02-06 17:14

    Data Storage Choices: It Depends

    Simple, non-learning bots: XML is fine

    It looks like you already have a basic XML structure worked out. For just starting out, I'd say that's fine, especially for AI support-chat kind of bots (if userMsg.contains('lega') then print('TOS & Copyright...').

    Of course, switching to any new format will take time and overhead.

    Learning, Complicated bots: database!

    If you're looking to do something much larger, especially if you have CleverBot in mind, I think you're going to need a database. This is because when your file .. is a file and is gigantic and trying to keep it all available in memory is resource intensive. For this kind of project, I'd recommend a database.

    Why? English is Complicated

    A while back I wrote a nieve bayes spam sorter. It took about 10,000 pieces of spam to "train" it at a 7% accuracy rate, which took about 6 hours and 1.5GB of RAM to hold the data in memory. That's a lot of data. English is very hard and can't really be broken into if 'pony' then 'saddle', so for a bot to "learn" the best responses, your database is going to become massive and very quickly.

提交回复
热议问题