Metadata-Version: 1.1
Name: algo-ml
Version: 0.0.1
Summary: Machine learning Package
Home-page: https://github.com/kukuquack/algo-ml
Author: Omar Zayed
Author-email: kukuquack@gmail.com
License: MIT
Description: # This is Algo-ML
        This is a machine learning module/library. Feel free to use any of the code.
        
        ## How to use: 
        ### Regression
        Call the train function on the model, giving the data as the first input and there is no other input. The input data looks like this: [[x, y], [x, y], ........].
        
        ### KMeansClustering
        Call the train function giving the data as input which should look like this [[x, y, ....], [x, y, ....], [x, y, ....], .......].
        
        ### KNearestNeighbor
        Give it data to train on (just stores the data), which takes the form [[x, y, ......, LABEL], [x, y, ......, LABEL], ...........]. Use the predict function then to predict a label
        for a particular point.
        
        
        
        ### That's it! :)
        
        
        Change log
        __________
        
        0.0.1 (9/20/2020)
        - - - - - - - - - 
        - First Release
Keywords: machine learning ml ai artificial intelligence k-means clustering nearest neighbor regression
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
