File: c.rst

package info (click to toggle)
xgboost 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,796 kB
  • sloc: cpp: 67,502; python: 35,503; java: 4,676; ansic: 1,426; sh: 1,320; xml: 1,197; makefile: 204; javascript: 19
file content (66 lines) | stat: -rw-r--r-- 1,429 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#################
XGBoost C Package
#################

XGBoost implements a set of C API designed for various bindings, we maintain its stability
and the CMake/make build interface.  See :doc:`/tutorials/c_api_tutorial` for an
introduction and ``demo/c-api/`` for related examples.  Also one can generate doxygen
document by providing ``-DBUILD_C_DOC=ON`` as parameter to ``CMake`` during build, or
simply look at function comments in ``include/xgboost/c_api.h``. The reference is exported
to sphinx with the help of breathe, which doesn't contain links to examples but might be
easier to read. For the original doxygen pages please visit:

* `C API documentation (latest master branch) <./dev/c__api_8h.html>`_
* `C API documentation (last stable release) <https://xgboost.readthedocs.io/en/stable/dev/c__api_8h.html>`_

***************
C API Reference
***************

.. contents::
  :backlinks: none
  :local:

Library
=======

.. doxygengroup:: Library
   :project: xgboost

DMatrix
=======

.. doxygengroup:: DMatrix
   :project: xgboost

.. _c_streaming:

Streaming
---------

.. doxygengroup:: Streaming
   :project: xgboost

Booster
=======

.. doxygengroup:: Booster
   :project: xgboost

Prediction
----------

.. doxygengroup:: Prediction
   :project: xgboost

Serialization
-------------

.. doxygengroup:: Serialization
   :project: xgboost

Collective
==========

.. doxygengroup:: Collective
   :project: xgboost