This repository is focused on Artificial Intelligence Searching strategies,Machine Learning algorithm such as Decision Tree, MultiLayer perceptron along with Natural Language Processing.
Contributions are always welcome!
-
Create a personal fork of the project on Github.This will create a copy of this repository in your account.
-
Clone the fork on your local machine. Your remote repo on Github is called origin.
git clone "url u just copied"
-
Create a virtual Environment (optional) Run the following in your terminal Windows:
python -m venv venvActivate the Virtual Environment
venv\Scripts\activatemacOS/Linux:
python3 -m venv venvActivate the Virtual Environment
source venv/bin/activateDownload required packages from requirements.txt
pip install -r requirements.txt -
Make necessary changes and commit using
git add filename
git commit -m "msg"
- Push your changes to github forked repository.
git push -u origin your-branch-name
- Submit your changes for a review
If you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button.
- Open a pull request -Soon I'll be merging all your changes into the main branch of this project. You will get a notification email once the changes have been merged.