Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

scikit learn documentation in PDF

Does anyone have any idea how I can get the scikit learn documentation (http://scikit-learn.org/stable/documentation.html) specifically the user guide, tutorials and examples, in PDF format?

If they are not readily available, is there a way to convert them to PDF programmatically? I looked around for html to pdf conversion api services but none of them is free...

Thanks in advance.

like image 785
andy Avatar asked Dec 11 '22 23:12

andy


1 Answers

User docs can be found here http://sourceforge.net/projects/scikit-learn/files/documentation/ also, the older versions.

Also, you can create up-to-date offline HTML docs from Github https://github.com/scikit-learn/scikit-learn/tree/master/doc

To generate the full web page, 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
like image 153
Zero Avatar answered Dec 29 '22 05:12

Zero