Skip to content

A Beginner's Guide to a Machine Learning Chatbot in Python

Notifications You must be signed in to change notification settings

IsaiMar/chatbot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 

Repository files navigation

Chatbot

This is a very basic starting point to build a chatbot in Python. Within this project, you will use the Chatterbot library, with Chatterbot-Corpus used if you would like. My purpose of creating this project is to help others create their own chatbots and train them to do what they want, and to also help others get their feet wet in the world of machine learning.

Included in the Python file of this project titled 'chatbot.py', you will find three imports that you can use. You will definetly need to use the first, but you can choose whether to use List Trainer or Chatterbot Corpus. I will let you figure out which you would like to use

Look to the links in References titled Chatterbot Documenation and Chatterbot-Corpus Libraries to learn how to train your bot.

Feel free to fork this repository and use it as a starting place for your very own chatbot.

Getting Started


You are going to want to go the first link in References and download Python 3.9.13. You may not need to do this, but for my configuration, it worked. After downloading Python 3.9.13, you are going to want to run these commands in the terminal

pip install sugaroid-chatterbot
pip install sugaroid-chatterbot-corpus
python3 -m spacy download en_core_web_sm
pip install Mako==1.1.2
pip install SQLAlchemy==1.3.6

After this, you should be able to make a chatbot up to the specifications that you want!

Project Structure


The project files and folders are organized as follows:

chatbot                             (project folder)
+-- .gitignore                      (ignore file for any files that don't need to be pushed to GitHub)
+-- README.md                       (general information about project)
+-- chatbot.py                      (file where the chatbot will reside)

Required Technologies


  • An IDE like VSCode
  • Python 3.9.13
  • Chatterbot
  • Chatterbot-Corpus

References


Author


About

A Beginner's Guide to a Machine Learning Chatbot in Python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%