1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
|
.. only:: html
.. raw:: html
<!-- Block section -->
<div class="container-index">
<div class="container index-upper">
<div class="row-fluid">
<!-- Classification -->
<div class="span4 box">
<h2 >
:ref:`Classification <supervised-learning>`
.. raw:: html
</h2>
<blockquote>
<p>Identifying to which category an object belongs to.</p>
<div class="box-links">
<strong>Applications</strong>: Spam detection, Image recognition.</br>
<strong>Algorithms</strong>:
:ref:`SVM<svm_classification>`, :ref:`nearest neighbors<classification>`, :ref:`random forest<forest>`, ...
.. raw:: html
<small class="float-right box-example-links">
:ref:`Examples<general_examples>`
.. raw:: html
</small>
</div>
</blockquote>
</div>
<!-- Regression -->
<div class="span4 box">
<h2>
:ref:`Regression <supervised-learning>`
.. raw:: html
</h2>
<blockquote>
<p>Predicting a continuous-valued attribute associated with an object.</p>
<div class="box-links">
<strong>Applications</strong>: Drug response, Stock prices.</br>
<strong>Algorithms</strong>:
:ref:`SVR<svm_regression>`, :ref:`ridge regression<ridge_regression>`, :ref:`Lasso<lasso>`, ...
.. raw:: html
<small class="float-right box-example-links">
:ref:`Examples<general_examples>`
.. raw:: html
</small>
</div>
</blockquote>
</div>
<!-- Clustering -->
<div class="span4 box">
<h2>
:ref:`Clustering<clustering>`
.. raw:: html
</h2>
<blockquote>
<p>Automatic grouping of similar objects into sets.</p>
<div class="box-links">
<strong>Applications</strong>: Customer segmentation, Grouping experiment outcomes</br>
<strong>Algorithms</strong>:
:ref:`k-Means<k_means>`, :ref:`spectral clustering<spectral_clustering>`, :ref:`mean-shift<mean_shift>`, ...
.. raw:: html
<small class="float-right example-links">
:ref:`Examples<cluster_examples>`
.. raw:: html
</small>
</div>
</blockquote>
</div>
<!-- row -->
</div>
<div class="row-fluid">
<!-- Dimension reduction -->
<div class="span4 box">
<h2>
:ref:`Dimensionality reduction<decompositions>`
.. raw:: html
</h2>
<blockquote>
<p>Reducing the number of random variables to consider.</p>
<div class="box-links">
<strong>Applications</strong>: Visualization, Increased efficiency</br>
<strong>Algorithms</strong>:
:ref:`PCA<PCA>`, :ref:`feature selection<feature_selection>`, :ref:`non-negative matrix factorization<NMF>`.
.. raw:: html
<small class="float-right example-links">
:ref:`Examples<decomposition_examples>`
.. raw:: html
</small>
</div>
</blockquote>
</div>
<!-- Model selection -->
<div class="span4 box">
<h2>
:ref:`Model selection<model_selection>`
.. raw:: html
</h2>
<blockquote>
<p>Comparing, validating and choosing parameters and models.</p>
<div class="box-links">
<strong>Goal</strong>: Improved accuracy via parameter tuning</br>
<strong>Modules</strong>:
:ref:`grid search<grid_search>`, :ref:`cross validation<cross_validation>`, :ref:`metrics<model_evaluation>`.
.. raw:: html
<small class="float-right example-links">
:ref:`Examples<general_examples>`
.. raw:: html
</small>
</div>
</blockquote>
</div>
<!-- Preprocessing -->
<div class="span4 box">
<h2>
:ref:`Preprocessing<preprocessing>`
.. raw:: html
</h2>
<blockquote>
<p>Feature extraction and normalization.</p>
<div class="box-links">
<strong>Application</strong>: Transforming input data such as text for use with machine learning algorithms.</br>
<strong>Modules</strong>:
:ref:`preprocessing<preprocessing>`, :ref:`feature extraction<feature_extraction>`.
.. raw:: html
<span class="example-links">
<small class="float-right example-links">
:ref:`Examples<general_examples>`
.. raw:: html
</small>
</div>
</blockquote>
</div>
<!-- row -->
</div>
</div> <!-- container -->
<div class="container index-lower">
<div class="row-fluid">
<!-- News -->
<div class="span4">
<h4>News</h4>
<ul>
<li><em>On-going development:</em>
<a href="/dev/whats_new.html"><em>What's new</em> (Changelog)</a>
</li>
<li><strong>Scikit-learn 0.21 will drop support for Python 2.7 and Python 3.4.</strong>
</li>
<li><em>December 2018.</em> scikit-learn 0.20.2 is available for download (<a href="whats_new.html#version-0-20-2">Changelog</a>).
</li>
<li><em>November 2018.</em> scikit-learn 0.20.1 is available for download (<a href="whats_new.html#version-0-20-1">Changelog</a>).
</li>
<li><em>September 2018.</em> scikit-learn 0.20.0 is available for download (<a href="whats_new.html#version-0-20-0">Changelog</a>).
</li>
<li><em>July 2018.</em> scikit-learn 0.19.2 is available for download (<a href="whats_new.html#version-0-19">Changelog</a>).
</li>
<li><em>July 2017.</em> scikit-learn 0.19.0 is available for download (<a href="whats_new/v0.19.html#version-0-19">Changelog</a>).
</li>
<li><em>June 2017.</em> scikit-learn 0.18.2 is available for download (<a href="whats_new/v0.18.html#version-0-18-2">Changelog</a>).
</li>
</ul>
</div>
<!-- Community -->
<div class="span4">
<h4>Community</h4>
<ul>
<li><em>About us</em> See <a href="about.html#people">authors</a> and <a href="developers/contributing.html">contributing</a></li>
<li><em>More Machine Learning</em> Find <a href="related_projects.html">related projects</a></li>
<li><em>Questions?</em> See <a href="faq.html">FAQ</a> and <a href="https://stackoverflow.com/questions/tagged/scikit-learn">stackoverflow</a></li>
<li><em>Mailing list:</em> <a href="https://mail.python.org/mailman/listinfo/scikit-learn">scikit-learn@python.org</a></li>
<li><em>IRC:</em> #scikit-learn @ <a href="https://webchat.freenode.net/">freenode</a></li>
</ul>
<form target="_top" id="paypal-form" method="post" action="https://www.paypal.com/cgi-bin/webscr">
<input type="hidden" value="_s-xclick" name="cmd">
<input type="hidden" value="74EYUMF3FTSW8" name="hosted_button_id">
</form>
<a class="btn btn-warning btn-big" onclick="document.getElementById('paypal-form').submit(); return false;">Help us, <strong>donate!</strong></a>
<a class="btn btn-warning btn-big cite-us" href="./about.html#citing-scikit-learn"><strong>Cite us!</strong></a>
<small style="display: block; margin-top: 10px"><a href="about.html#funding">Read more about donations</a></small>
</div>
<!-- who using -->
<div class="span4">
<h4>Who uses scikit-learn?</h4>
<div id="testimonials_carousel" class="carousel slide">
<div class="carousel-inner">
<div class="active item">
<img src="_images/inria.png" class="thumbnail" />
<p>
<em>"We use scikit-learn to support leading-edge basic research [...]"</em>
</p>
</div>
<div class="item">
<img src="_images/spotify.png" class="thumbnail" />
<p>
<em>"I think it's the most well-designed ML package I've seen so far."</em>
</p>
</div>
<div class="item">
<img src="_images/change-logo.png" class="thumbnail" />
<p>
<em>"scikit-learn's ease-of-use, performance and overall variety of algorithms implemented has proved invaluable [...]."</em>
</p>
</div>
<div class="item">
<img src="_images/evernote.png" class="thumbnail" />
<p>
<em>"For these tasks, we relied on the excellent scikit-learn package for Python."</em>
</p>
</div>
<div class="item">
<img src="_images/telecomparistech.jpg"
class="thumbnail" />
<p>
<em>"The great benefit of scikit-learn is its fast learning curve [...]"</em>
</p>
</div>
<div class="item">
<img src="_images/aweber.png" class="thumbnail" />
<p>
<em>"It allows us to do AWesome stuff we would not otherwise accomplish"</em>
</p>
</div>
<div class="item">
<img src="_images/yhat.png" class="thumbnail" />
<p>
<em>"scikit-learn makes doing advanced analysis in Python accessible to anyone."</em>
</p>
</div>
</div>
</div>
<p align="right">
<small class="example-link">
<a href="testimonials/testimonials.html">More testimonials</a>
</small>
</p>
</div>
</div>
</div>
<!--Bottom of index page contributions logos-->
<div class="container index-upper" >
<div class="row-fluid">
<div class="footer">
<div class="span3">
Funding provided by INRIA and others.
</div>
<div class="span6">
<a class="reference internal" href="about.html#funding" style="text-decoration: none; white-space: nowrap" >
<img id="index-funding-logo-big" src="_static/img/inria-small.png" title="INRIA">
<img id="index-funding-logo-small" src="_static/img/google.png" title="Google">
<!--Due to Télécom ParisTech's logo text being smaller, a style has been added to improve readability-->
<img id="index-funding-logo-small" src="_static/img/telecom.png" title="Télécom ParisTech" style="max-height: 36px">
<img id="index-funding-logo-small" src="_static/img/FNRS-logo.png" title="FNRS">
<img id="index-funding-logo-small" src="_static/img/sloan_logo.jpg" title="Alfred P. Sloan Foundation" style="max-height: 36px">
<img id="index-funding-logo-small" src="_static/img/columbia.png" title="Columbia University" style="max-height: 36px;">
<img id="index-funding-logo-small" src="_static/img/sydney-stacked.jpeg" title="The University of Sydney" style="max-height: 36px;">
</a>
</div>
<div class="span3">
<a class="reference internal" href="about.html#funding">
More information on our contributors
</a>
</div>
</div>
</div>
</div>
</div>
<script>
$('#testimonials_carousel').carousel()
</script>
.. Define an order for the Table of Contents:
.. toctree::
:maxdepth: 2
:hidden:
preface
tutorial/index
user_guide
glossary
auto_examples/index
modules/classes
developers/index
|