Code Monkey home page Code Monkey logo

simplysklearn's Introduction

SIMPLYSKLEARN


forthebadge made-with-python


Time to even automate your machine learning process!

Description

As Bill Gates once said, โ€œI choose a lazy person to do a hard job. Because a lazy person will find an easy way to do it.โ€.

After numerous hours, days, weeks and months spent on Kaggle, I was inspired to sum up all the repetitive and tedious process to one single package. For any machine learning projects, the user must perform data manipulations, check the dataset is all set for models. After that, they must fit it into models and take note of how the model performs.

With this package, I want to eliminate that tedious stage for any user. This package would mainly be beneficial to those recently starting out in the field of machine learning or intermediate users. It is probably unsuitable for highly complex models or datasets.

The main usage should be to assist the user by assessing the performances of myriad of models.

What it provides

image

  • Prepares datatset by taking care of categorical feature by one-hot-encoding and numerical feature by scaling.
  • Automatically fits the engineered dataset on myriad of Scikit-Learn models.
  • Depending on what metric you want to observe, will plot you a colorful comparison of metrics of different models.

Future Improvements

  • Automated hyperparameter tuning process
  • Option to display feature importances

Getting Started

Dependencies

  • Programming Language: Python
  • License: MIT
  • Operating System: Independent
  • Dependencies

Installing

pip install simplysklearn

The python package website can be accessed here

Executing program

from simplysklearn import Classification
from simplysklearn import Regression

Classification Example

df = pd.read_csv('titanic.csv')
model = Classification(df, feature_columns_list, target_column)
model.fit()
model.plot('accuracy_score')
print(model.outlier_values)

image

Regression Example

df = pd.read_csv('housing_prices.csv')
model = Regression(df, feature_columns_list, target_column)
model.fit()
model.plot('mean_squared_error')
print(model.outlier_values)

image

Documentation

Documentation can be accessed here.

Contributing

Contributions are very much welcomed from everyone!

Just make sure to fork this repo, make changes and open a pull request.

Or you are always welcome to contact me via email!

When you have created a pull request, we can take a look and improve on this package! ^_^

Authors

Version History

  • 0.2.0

    • Major overhaul for organization (2023.04.04)
  • 0.1.0

    • Fixes for Classification Module (2023.04.03)
  • 0.0.11

    • Separation of Regression and Classification for clarity (2023.02.04)
  • 0.0.5

    • Various regression bug fixes(2023.01.29)
  • 0.0.1

    • Initial Release (2023.01.28)

License

This project is licensed under the MIT License - see the LICENSE file for details.

simplysklearn's People

Contributors

vanilladucky avatar

Watchers

Kostas Georgiou avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.