A repository containing hardcoded ML algorithms.
Everyone is welcome to contribute, steps for contributing:
- Create an Issue specifying the contribution work.
- fork this repo into your own account.
git clone <link>your forked repo into local machine.- Contributors Must follow the directory structure guidelines:
- All files must be kept in a directory.
- Directory name must resemble the issue (Algorithm)
- Add a README.md with your name and link to github profile using [your-name](link-to-profile)
- After the contribution work is ready go ahead and add it to staging area by
git add -A git commit -m <your_message>your changes into master branch.git push origin masterinto your forked repository.- Issue a pull request from forked repo to this repo.
- Get your name in CONTRIBUTORS.md!
Added:
- Linear Regression
To do:
- Logistic Regression
- Decision Tree
- Random Forest
- Naive Bayes
- K-nearest Neighbour