2014-03-17 12:17 GMT+01:00 Maheshakya Wijewardena <[email protected]>: > I suppose the relevant information for the html document is taken from the > doc string in the `GradientBoostingClassifier`. How does this data renders > into a html document. The doc string does not contain all the information > about the functions in that class. But generated html document contains all > information including the function descriptions in that class. Can someone > explain how does this work? > (I am using make doc to build the the documentation pages after changing)
Sphinx detects public functions and generates documentation for all of them. A function is public if it's name does not start with _. ------------------------------------------------------------------------------ Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. Written by three acclaimed leaders in the field, this first edition is now available. Download your free book today! http://p.sf.net/sfu/13534_NeoTech _______________________________________________ Scikit-learn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
