ruifeng96150 / easy_sklearn

This is a python library, which can be easier to build sklearn classification and regressor models.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Easy skLearn

This library is base on sklearn, which can be easier to build classification and regressor models

Install

#pip install easy_sklearn

Usage

esc = EasySklearnClassifier()
X_train, X_test, y_train, y_test = esc.split_data(X, y)
esc.set()
esc.fit(X_train, y_train)
esc.score(X_test, y_test)
esc.plot_learning_curve()

Examples

Contribution or Issues

It's project is free to use and is waiting your contribute to make it more easier to use.

About

This is a python library, which can be easier to build sklearn classification and regressor models.

License:MIT License


Languages

Language:Jupyter Notebook 82.9%Language:Python 17.1%