Metadata-Version: 1.1
Name: irisflower
Version: 1.0.0
Summary: Iris flower species classifier
Home-page: https://github.com/risan/iris-flower-classifier
Author: Risan Bagja Pradana
Author-email: risanbagja@gmail.com
License: MIT
Description: ========================
        Irish Flower Classifier
        ========================
        
        Simple module for identiying Irish flower species based on it's sepal and petal dimensions.
        
        Dependencies
        ------------------------
        
        - `Scikit Learn <http://scikit-learn.org/>`_
        
        Installation
        ------------------------
        
        The recomended way to install this module is through `pip <https://pip.pypa.io/>`_.
        
        .. code-block:: bash
        
            pip install irisflower
        
        How To Use
        ------------------------
        
        .. code-block:: python
        
            # Import IrishFlowerClassifier class.
            from irisflower.classifier import IrisFlowerClassifier
        
            # Create a new instance of IrisFlowerClassifier.
            iris_flower = IrisFlowerClassifier()
        
            # Finaly classify the flower species.
            print iris_flower.classify(sepal_length=5,sepal_width=3,petal_length=1,petal_width=0.2)
        
        
        This is my first attempt to learn machine learning and also
        my first code written in Python! :snake:
        
Keywords: machine learning classifier
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
