ml.rst 859 Bytes
Newer Older
1 2 3
********************
ml. Machine Learning
********************
4

5
The Machine Learning Library (MLL) is a set of classes and functions for statistical classification, regression, and clustering of data.
6

7
Most of the classification and regression algorithms are implemented as C++ classes. As the algorithms have different sets of features (like an ability to handle missing measurements or categorical input variables), there is a little common ground between the classes. This common ground is defined by the class `CvStatModel` that all the other ML classes are derived from.
8 9 10 11 12 13 14 15 16 17

.. toctree::
    :maxdepth: 2

    statistical_models
    normal_bayes_classifier
    k_nearest_neighbors
    support_vector_machines
    decision_trees
    boosting
18
    gradient_boosted_trees
19
    random_trees
Maria Dimashova's avatar
Maria Dimashova committed
20
    ertrees
21
    expectation_maximization
22
    neural_networks
Maria Dimashova's avatar
Maria Dimashova committed
23
    mldata