11# auto-sklearn
22
3- auto-sklearn is an automated machine learning toolkit and a drop-in replacement for a scikit-learn estimator.
3+ ** auto-sklearn** is an automated machine learning toolkit and a drop-in replacement for a [ scikit-learn] ( https://scikit-learn.org ) estimator.
44
5- Find the documentation [ here] ( http://automl.github.io/auto-sklearn/ )
5+ Find the documentation ** [ here] ( http://automl.github.io/auto-sklearn/ ) ** . Quick links:
6+ * [ Installation Guide] ( https://automl.github.io/auto-sklearn/master/installation.html )
7+ * [ Releases] ( https://automl.github.io/auto-sklearn/master/releases.html )
8+ * [ Manual] ( https://automl.github.io/auto-sklearn/master/manual.html )
9+ * [ Examples] ( https://automl.github.io/auto-sklearn/master/examples/index.html )
10+ * [ API] ( https://automl.github.io/auto-sklearn/master/api.html )
611
7- ## Automated Machine Learning in four lines of code
12+ ## auto-sklearn in one image
13+
14+ ![ image] ( doc/images/askl_pipeline.png )
15+
16+ ## auto-sklearn in four lines of code
817
918``` python
1019import autosklearn.classification
@@ -15,12 +24,39 @@ predictions = cls.predict(X_test)
1524
1625## Relevant publications
1726
18- Efficient and Robust Automated Machine Learning
19- Matthias Feurer, Aaron Klein, Katharina Eggensperger, Jost Springenberg, Manuel Blum and Frank Hutter
27+ If you use auto-sklearn in a scientific publications, we would appreciate citations.
28+
29+ ** Efficient and Robust Automated Machine Learning**
30+ * Matthias Feurer, Aaron Klein, Katharina Eggensperger, Jost Springenberg, Manuel Blum and Frank Hutter*
2031Advances in Neural Information Processing Systems 28 (2015)
21- http://papers.nips.cc/paper/5872-efficient-and-robust-automated-machine-learning.pdf
2232
23- Auto-Sklearn 2.0: The Next Generation
24- Authors: Matthias Feurer, Katharina Eggensperger, Stefan Falkner, Marius Lindauer and Frank Hutter
33+ [ Link] ( http://papers.nips.cc/paper/5872-efficient-and-robust-automated-machine-learning.pdf ) to publication.
34+ ```
35+ @inproceedings{feurer-neurips15a,
36+ title = {Efficient and Robust Automated Machine Learning},
37+ author = {Matthias Feurer, Aaron Klein, Katharina Eggensperger, Jost Springenberg, Manuel Blum and Frank Hutter},
38+ booktitle = {Advances in Neural Information Processing Systems 28 (2015)},
39+ pages = {2962--2970},
40+ year = {2015}
41+ }
42+ ```
43+
44+ ----------------------------------------
45+
46+ ** Auto-Sklearn 2.0: The Next Generation**
47+ * Matthias Feurer, Katharina Eggensperger, Stefan Falkner, Marius Lindauer and Frank Hutter**
2548arXiv:2007.04074 [ cs.LG] , 2020
26- https://arxiv.org/abs/2007.04074
49+
50+ [ Link] ( https://arxiv.org/abs/2007.04074 ) to publication.
51+ ```
52+ @inproceedings{feurer-arxiv20a,
53+ title = {Auto-Sklearn 2.0: The Next Generation},
54+ author = {Matthias Feurer, Katharina Eggensperger, Stefan Falkner, Marius Lindauer and Frank Hutter},
55+ booktitle = {arXiv:2007.04074 [cs.LG]},
56+ year = {2020}
57+ }
58+ ```
59+
60+ ----------------------------------------
61+
62+ Also, have a look at the blog on [ automl.org] ( automl.org ) where we regularly release blogposts.
0 commit comments