Code Monkey home page Code Monkey logo

fastautoml's Introduction

fastautoml

fastautoml is powerful and computationally efficient Python library for automated machine learning, intended for data scientists and with the goal of maximize their productivity.

Prerequisites

fastautoml requires:

  • scikit-learn (>= 0.22)

User Installation

If you already have a working installation of scikit-learn and pandas, the easiest way to install fastautoml is using pip:

pip install fastautoml

Running

The following example shows how to compute an optimal model for the MNIST dataset included with scikit-learn.

from fastautoml.fastautoml import AutoClassifier
from sklearn.datasets import load_digits
from sklearn.model_selection import train_test_split

X, y = load_digits(return_X_y=True)
X_train, X_test, y_train, y_test = train_test_split(X, y)

model = AutoClassifier()
model.fit(X_train, y_train)
print("Score:", model.score(X_test, y_test))

Help

Authors

R. Leiva and contributors. If you want to contribute to this project, please contact with the main author.

License

This project is licensed under the 3-Clause BSD license - see the LICENSE.md file for details.

Aknowledgements

This project has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreement No 732667 RECAP

fastautoml's People

Contributors

rleiva avatar

Watchers

 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.