Metadata-Version: 2.1
Name: sk
Version: 0.0.0
Summary: Utilities for scikit-learn to quickly build and experiment with machine learning models.
Home-page: https://github.com/marella/sk
Author: Ravindra Marella
License: MIT
Description: Utilities for scikit-learn to quickly build and experiment with machine learning models.
        
        ## Installation
        
        ```sh
        pip install sk
        ```
        
        ## Usage
        
        ```py
        from sk import *
        
        iris = datasets.load_iris()
        X, y = iris.data, iris.target
        
        model = SVC(gamma='scale')
        model.fit(X, y)
        ```
        
Keywords: sk scikit-learn sklearn machine-learning
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
