scikit-learn/doc
Kumar Ashutosh 87759c1924 FEA Add a new class RegressorChain similar to ClassifierChain (#9257) 2017-12-12 09:00:57 +11:00
..
datasets CLN: remove nose fixtures in docs (#10187) 2017-11-22 15:45:06 +01:00
developers MAINT use Python 3.4 in first conda build (#10193) 2017-11-28 20:12:45 +11:00
images [MRG] Add Alfred P. Sloan foundation to sponsors and footer (#9402) 2017-07-22 13:38:42 +02:00
includes
logos DOC optimize some PNG images, shaves off 24kB 2014-07-09 17:40:57 +02:00
modules FEA Add a new class RegressorChain similar to ClassifierChain (#9257) 2017-12-12 09:00:57 +11:00
sphinxext [MRG+1] Fix typos in documentation (#9878) 2017-10-07 16:06:18 +02:00
templates [MRG] update numpydoc to upstream, include fix for line numbers (#7355) 2017-07-18 19:34:54 +02:00
testimonials Added Zopa testimonial (#8309) 2017-02-08 08:53:29 +01:00
themes/scikit-learn DOC previous versions -> all available versions (#10178) 2017-11-21 13:34:16 +08:00
tutorial DOC Add NORMALIZE_WHITESPACE for numpy master 2017-12-11 12:56:27 +11:00
whats_new FEA Add a new class RegressorChain similar to ClassifierChain (#9257) 2017-12-12 09:00:57 +11:00
Makefile MAINT remove entire directory in make clean 2017-09-28 00:33:57 +10:00
README.md [MRG + 1] DOC Update doc/README.md (#10225) 2017-12-06 08:20:58 +01:00
about.rst Credit University of Sydney sponsorship (#9466) 2017-08-01 11:07:02 +02:00
conf.py DOC: use intersphinx for links in gallery examples (#9909) 2017-10-11 15:41:26 +02:00
conftest.py CLN: remove nose fixtures in docs (#10187) 2017-11-22 15:45:06 +01:00
data_transforms.rst minor grammatical fix 2015-11-16 14:27:51 -08:00
documentation.rst DOC previous versions -> all available versions (#10178) 2017-11-21 13:34:16 +08:00
faq.rst [MRG+1] DOC Mention MKL multithreading in FAQ 2017-12-07 07:19:24 +11:00
index.rst DOC update news 2017-10-25 00:41:12 +11:00
install.rst MAINT use Python 3.4 in first conda build (#10193) 2017-11-28 20:12:45 +11:00
make.bat add html-noplot and changed help message to make.bat (#8524) 2017-03-04 14:56:02 -05:00
model_selection.rst DOC Add the learning curve documentation to model_selection.rst 2015-11-04 15:22:09 +01:00
preface.rst minor fixes to the doc build 2015-09-11 17:32:51 -04:00
presentations.rst [MRG] DOC Replacing "the scikit" with "scikit-learn" (#10126) 2017-11-14 11:06:50 +01:00
related_projects.rst DOC Add sklearn-xarray package to related projects (#10243) 2017-12-04 11:27:00 +11:00
supervised_learning.rst (WIP) Added Multi-layer perceptron (MLP) 2015-10-21 14:41:40 -04:00
support.rst [MRG+1] MAINT Use magic to list documentation versions (#9841) 2017-11-20 10:52:38 +01:00
tune_toc.rst sidebar hide on css 2015-05-25 18:25:11 +02:00
unsupervised_learning.rst (WIP) Added Multi-layer perceptron (MLP) 2015-10-21 14:41:40 -04:00
user_guide.rst DOC organise documentation hierarchy / table of contents 2015-06-12 08:09:41 +10:00
whats_new.rst [MRG+1] Split what's new into separate files (#9505) 2017-09-08 12:51:51 +02:00

README.md

Documentation for scikit-learn

This directory contains the full manual and web site as displayed at http://scikit-learn.org.

Building manually

Building the website requires the sphinx, sphinx-gallery and matplotlib packages:

pip install sphinx numpydoc sphinx-gallery matplotlib

It also requires having the version of scikit-learn installed that corresponds to the documentation, e.g.:

pip install --editable ..

To generate the full web site, including the example gallery (this might take a while):

make html

Or, if you'd rather not build the example gallery:

make html-noplot

That should create all the doc in directory _build/html

To build the PDF manual, run

make latexpdf

Make sure you first have the correct version of scikit-learn

Hosting and automatic builds

The website is hosted at github, but should rarely be updated manually by pushing to the https://github.com/scikit-learn/scikit-learn.github.io repository.

Most updates can be made by pushing to master (for /dev) or a release branch like 0.99.X, from which Circle CI builds and uploads documentation. (See the Developer Documentation for further details.)