зеркало из https://github.com/microsoft/LightGBM.git
5d3a3ea47e
* fix metric alias * fix format * updated docs * simplify alias in objective function * move the alias parsing to config.cpp * updated docs * fix multi-class aliases * updated regression aliases in docs * fixed trailing space |
||
---|---|---|
.. | ||
_static | ||
.linkcheckerrc | ||
Advanced-Topics.rst | ||
C-API.rst | ||
Development-Guide.rst | ||
Experiments.rst | ||
FAQ.rst | ||
Features.rst | ||
GPU-Performance.rst | ||
GPU-Targets.rst | ||
GPU-Tutorial.rst | ||
GPU-Windows.rst | ||
Installation-Guide.rst | ||
Key-Events.md | ||
Makefile | ||
Parallel-Learning-Guide.rst | ||
Parameters-Tuning.rst | ||
Parameters.rst | ||
Python-API.rst | ||
Python-Intro.rst | ||
Quick-Start.rst | ||
README.rst | ||
conf.py | ||
gcc-Tips.rst | ||
index.rst | ||
make.bat | ||
requirements.txt | ||
requirements_base.txt |
README.rst
Documentation ============= Documentation for LightGBM is generated using `Sphinx <http://www.sphinx-doc.org/>`__ and `Breathe <https://breathe.readthedocs.io/>`__, which works on top of `Doxygen <http://www.doxygen.nl/index.html>`__ output. List of parameters and their descriptions in `Parameters.rst <./Parameters.rst>`__ is generated automatically from comments in `config file <https://github.com/microsoft/LightGBM/blob/master/include/LightGBM/config.h>`__ by `this script <https://github.com/microsoft/LightGBM/blob/master/helpers/parameter_generator.py>`__. After each commit on ``master``, documentation is updated and published to `Read the Docs <https://lightgbm.readthedocs.io/>`__. Build ----- You can build the documentation locally. Just install Doxygen and run in ``docs`` folder .. code:: sh pip install -r requirements.txt make html If you faced any problems with Doxygen installation or you simply do not need documentation for C code, it is possible to build the documentation without it: .. code:: sh pip install -r requirements_base.txt export C_API=NO || set C_API=NO make html