Metadata-Version: 2.1
Name: mlscratch
Version: 0.0.1
Summary: Machine learning from scratch
Home-page: https://github.com/lukenew2/mlscratch
Author: Luke Newman
Author-email: lukeanewman2@gmail.com
License: UNKNOWN
Project-URL: Source, https://github.com/lukenew2/mlscratch
Keywords: data science,machine learning
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Education
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Machine Learning From Scratch 

## About

Practical implementations of common machine learning algorithms with test
cases coded from scratch in a similar style as Scikit-learn using 
Object-Oriented Programming.

This project is meant to increase our understanding of machine learning
algorithms and what is  'underneath the hood'. It is not meant for use
in actual data science work.  

## Installation
Create a virtual environment and run the following commands in your terminal.

```
    $ git clone https://github.com/lukenew2/mlscratch
    $ cd mlscratch
    $ python setup.py install
```


