LightGBM/docs
Guolin Ke 2db6377a22
add support of refit-decay (#1603)
* add support of refit-decay

* add refit into c_api

* add test

* update document

* Update basic.py

* Update test_engine.py

* Update basic.py

* Update test_engine.py

* fix comments

* update test

* fix the comments

* Update test_engine.py
2018-08-25 16:21:17 +08:00
..
_static [docs] added possibility for collapsing sections (#1594) 2018-08-23 10:07:11 +08:00
.linkcheckerrc [ci] added tests with Clang/AppleClang compilation at Travis (#1522) 2018-08-13 12:03:49 +03:00
Advanced-Topics.rst [docs] negative values in category columns (#1567) 2018-08-08 04:58:53 +03:00
Development-Guide.rst [docs] multiple documents improvements (#1378) 2018-05-19 13:01:00 +08:00
Experiments.rst [docs] Edits for grammer and clarity (#1389) 2018-05-26 22:14:38 +03:00
FAQ.rst [ci] added tests with Clang/AppleClang compilation at Travis (#1522) 2018-08-13 12:03:49 +03:00
Features.rst [ci][docs] replaced problem link (#1583) 2018-08-12 12:15:03 +03:00
GPU-Performance.rst [docs] multiple documents improvements (#1378) 2018-05-19 13:01:00 +08:00
GPU-Targets.rst [docs][ci] updated link to AMD APP SDK in docs and Travis cleanup (#1447) 2018-06-13 07:24:14 +08:00
GPU-Tutorial.rst Update GPU-Tutorial.rst (#1592) 2018-08-17 09:53:27 +08:00
GPU-Windows.rst [ci] bring GPU tests back to Travis (#1428) 2018-06-09 10:04:19 +08:00
Installation-Guide.rst [docs] added possibility for collapsing sections (#1594) 2018-08-23 10:07:11 +08:00
Key-Events.md [docs][python] made OS detection more reliable and little docs improvements (#1414) 2018-06-03 12:46:59 +03:00
Makefile [docs] fixed building at Python 2.x (#997) 2017-10-30 11:44:08 +08:00
Parallel-Learning-Guide.rst [docs] multiple documents improvements (#1378) 2018-05-19 13:01:00 +08:00
Parameters-Tuning.rst [docs] Edits for grammer and clarity (#1389) 2018-05-26 22:14:38 +03:00
Parameters.rst add support of refit-decay (#1603) 2018-08-25 16:21:17 +08:00
Python-API.rst [docs] move wiki to Read the Docs (#945) 2017-10-07 23:43:58 +08:00
Python-Intro.rst [docs][python] made OS detection more reliable and little docs improvements (#1414) 2018-06-03 12:46:59 +03:00
Quick-Start.rst [docs] negative values in category columns (#1567) 2018-08-08 04:58:53 +03:00
README.rst [docs] generate parameters description from config file. Final stage (#1421) 2018-06-06 10:28:14 +08:00
conf.py [docs] refined title RTD page and renamed js file (#1539) 2018-07-23 11:00:15 +08:00
gcc-Tips.rst [docs] fixed building at Python 2.x (#997) 2017-10-30 11:44:08 +08:00
index.rst [docs] refined title RTD page and renamed js file (#1539) 2018-07-23 11:00:15 +08:00
make.bat [docs] fixed building at Python 2.x (#997) 2017-10-30 11:44:08 +08:00

README.rst

Documentation
=============

Documentation for LightGBM is generated using `Sphinx <http://www.sphinx-doc.org/>`__.

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/helper/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 run in ``docs`` folder

for Python 3.x:

.. code:: sh

    pip install sphinx "sphinx_rtd_theme>=0.3"
    make html

 
for Python 2.x:

.. code:: sh

    pip install mock sphinx "sphinx_rtd_theme>=0.3"
    make html