All Projects → automl → Auto Sklearn

automl / Auto Sklearn

Licence: other
Automated Machine Learning with scikit-learn

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Auto Sklearn

Scikit Optimize
Sequential model-based optimization with a `scipy.optimize` interface
Stars: ✭ 2,258 (-61.83%)
Mutual labels:  bayesian-optimization, scikit-learn, hyperparameter-optimization, hyperparameter-tuning, hyperparameter-search
mindware
An efficient open-source AutoML system for automating machine learning lifecycle, including feature engineering, neural architecture search, and hyper-parameter tuning.
Stars: ✭ 34 (-99.43%)
Mutual labels:  hyperparameter-optimization, bayesian-optimization, hyperparameter-tuning, automl, automated-machine-learning
Hyperactive
A hyperparameter optimization and data collection toolbox for convenient and fast prototyping of machine-learning models.
Stars: ✭ 182 (-96.92%)
Mutual labels:  meta-learning, scikit-learn, hyperparameter-optimization, bayesian-optimization, automated-machine-learning
Lale
Library for Semi-Automated Data Science
Stars: ✭ 198 (-96.65%)
Mutual labels:  scikit-learn, automl, hyperparameter-optimization, hyperparameter-tuning, automated-machine-learning
Smac3
Sequential Model-based Algorithm Configuration
Stars: ✭ 564 (-90.47%)
Mutual labels:  automl, hyperparameter-optimization, bayesian-optimization, hyperparameter-tuning, automated-machine-learning
Mljar Supervised
Automated Machine Learning Pipeline with Feature Engineering and Hyper-Parameters Tuning 🚀
Stars: ✭ 961 (-83.76%)
Mutual labels:  scikit-learn, automl, hyperparameter-optimization, automated-machine-learning
Nni
An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.
Stars: ✭ 10,698 (+80.83%)
Mutual labels:  automl, hyperparameter-optimization, bayesian-optimization, automated-machine-learning
maggy
Distribution transparent Machine Learning experiments on Apache Spark
Stars: ✭ 83 (-98.6%)
Mutual labels:  hyperparameter-optimization, hyperparameter-tuning, automl, hyperparameter-search
Autogluon
AutoGluon: AutoML for Text, Image, and Tabular Data
Stars: ✭ 3,920 (-33.74%)
Mutual labels:  scikit-learn, automl, hyperparameter-optimization, automated-machine-learning
Auptimizer
An automatic ML model optimization tool.
Stars: ✭ 166 (-97.19%)
Mutual labels:  automl, hyperparameter-optimization, hyperparameter-tuning, automated-machine-learning
Tpot
A Python Automated Machine Learning tool that optimizes machine learning pipelines using genetic programming.
Stars: ✭ 8,378 (+41.62%)
Mutual labels:  scikit-learn, automl, hyperparameter-optimization, automated-machine-learning
Auto-Surprise
An AutoRecSys library for Surprise. Automate algorithm selection and hyperparameter tuning 🚀
Stars: ✭ 19 (-99.68%)
Mutual labels:  hyperparameter-tuning, automl, automated-machine-learning, hyperparameter-search
Hpbandster
a distributed Hyperband implementation on Steroids
Stars: ✭ 456 (-92.29%)
Mutual labels:  automl, hyperparameter-optimization, bayesian-optimization, automated-machine-learning
Auto ml
[UNMAINTAINED] Automated machine learning for analytics & production
Stars: ✭ 1,559 (-73.65%)
Mutual labels:  scikit-learn, automl, hyperparameter-optimization, automated-machine-learning
Tune Sklearn
A drop-in replacement for Scikit-Learn’s GridSearchCV / RandomizedSearchCV -- but with cutting edge hyperparameter tuning techniques.
Stars: ✭ 241 (-95.93%)
Mutual labels:  scikit-learn, automl, bayesian-optimization, hyperparameter-tuning
FEDOT
Automated modeling and machine learning framework FEDOT
Stars: ✭ 312 (-94.73%)
Mutual labels:  hyperparameter-optimization, automl, automated-machine-learning
Meta-SAC
Auto-tune the Entropy Temperature of Soft Actor-Critic via Metagradient - 7th ICML AutoML workshop 2020
Stars: ✭ 19 (-99.68%)
Mutual labels:  hyperparameter-optimization, automl, meta-learning
differential-privacy-bayesian-optimization
This repo contains the underlying code for all the experiments from the paper: "Automatic Discovery of Privacy-Utility Pareto Fronts"
Stars: ✭ 22 (-99.63%)
Mutual labels:  hyperparameter-optimization, bayesian-optimization, hyperparameter-tuning
Hyperparameter Optimization Of Machine Learning Algorithms
Implementation of hyperparameter optimization/tuning methods for machine learning & deep learning models (easy&clear)
Stars: ✭ 516 (-91.28%)
Mutual labels:  hyperparameter-optimization, bayesian-optimization, hyperparameter-tuning
Sherpa
Hyperparameter optimization that enables researchers to experiment, visualize, and scale quickly.
Stars: ✭ 289 (-95.11%)
Mutual labels:  hyperparameter-optimization, bayesian-optimization, hyperparameter-tuning

auto-sklearn

auto-sklearn is an automated machine learning toolkit and a drop-in replacement for a scikit-learn estimator.

Find the documentation here. Quick links:

auto-sklearn in one image

image

auto-sklearn in four lines of code

import autosklearn.classification
cls = autosklearn.classification.AutoSklearnClassifier()
cls.fit(X_train, y_train)
predictions = cls.predict(X_test)

Relevant publications

If you use auto-sklearn in scientific publications, we would appreciate citations.

Efficient and Robust Automated Machine Learning
Matthias Feurer, Aaron Klein, Katharina Eggensperger, Jost Springenberg, Manuel Blum and Frank Hutter
Advances in Neural Information Processing Systems 28 (2015)

Link to publication.

@inproceedings{feurer-neurips15a,
    title     = {Efficient and Robust Automated Machine Learning},
    author    = {Feurer, Matthias and Klein, Aaron and Eggensperger, Katharina  Springenberg, Jost and Blum, Manuel and Hutter, Frank},
    booktitle = {Advances in Neural Information Processing Systems 28 (2015)},
    pages     = {2962--2970},
    year      = {2015}
}

Auto-Sklearn 2.0: The Next Generation
Matthias Feurer, Katharina Eggensperger, Stefan Falkner, Marius Lindauer and Frank Hutter*
arXiv:2007.04074 [cs.LG], 2020

Link to publication.

@article{feurer-arxiv20a,
    title     = {Auto-Sklearn 2.0: Hands-free AutoML via Meta-Learning},
    author    = {Feurer, Matthias and Eggensperger, Katharina and Falkner, Stefan and Lindauer, Marius and Hutter, Frank},
    booktitle = {arXiv:2007.04074 [cs.LG]},
    year      = {2020}
}

Also, have a look at the blog on automl.org where we regularly release blogposts.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].