GestureRecognitionToolkit
Version: 0.1.0
The Gesture Recognition Toolkit (GRT) is a cross-platform, open-source, c++ machine learning library for real-time gesture recognition.
|
This file implements a DecisionTreeClusterNode, which is a specific type of node used for a DecisionTree. More...
Go to the source code of this file.
Classes | |
class | DecisionTreeClusterNode |
This file implements a DecisionTreeClusterNode, which is a specific type of node used for a DecisionTree.
The node creates a spilt for each node in a DecisionTree by finding the threshold and feature that minimizes the error on the training data at that node. The threshold is found by using KMeans to find two clusters in the training data for each feature, with the threshold being set as the centroid between each cluster.
Definition in file DecisionTreeClusterNode.h.