ThresholdLearning Class |
Namespace: Accord.MachineLearning.Boosting.Learners
public class ThresholdLearning : ParallelLearningBase, ISupervisedBinaryLearning<DecisionStump, double[]>, ISupervisedMulticlassLearning<DecisionStump, double[]>, ISupervisedMultilabelLearning<DecisionStump, double[]>, ISupervisedLearning<DecisionStump, double[], int[]>, ISupervisedLearning<DecisionStump, double[], bool[]>, ISupervisedLearning<DecisionStump, double[], int>, ISupervisedLearning<DecisionStump, double[], bool>
The ThresholdLearning type exposes the following members.
Name | Description | |
---|---|---|
ThresholdLearning | Initializes a new instance of the ThresholdLearning class |
Name | Description | |
---|---|---|
Model |
Gets or sets the model being trained.
| |
ParallelOptions |
Gets or sets the parallelization options for this algorithm.
(Inherited from ParallelLearningBase.) | |
Token |
Gets or sets a cancellation token that can be used
to cancel the algorithm while it is running.
(Inherited from ParallelLearningBase.) |
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
Learn(Double, Boolean, Double) |
Learns a model that can map the given inputs to the given outputs.
| |
Learn(Double, Boolean, Double) |
Learns a model that can map the given inputs to the given outputs.
| |
Learn(Double, Int32, Double) |
Learns a model that can map the given inputs to the given outputs.
| |
Learn(Double, Int32, Double) |
Learns a model that can map the given inputs to the given outputs.
| |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
HasMethod |
Checks whether an object implements a method with the given name.
(Defined by ExtensionMethods.) | |
IsEqual |
Compares two objects for equality, performing an elementwise
comparison if the elements are vectors or matrices.
(Defined by Matrix.) | |
To(Type) | Overloaded.
Converts an object into another type, irrespective of whether
the conversion can be done at compile time or not. This can be
used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.) | |
ToT | Overloaded.
Converts an object into another type, irrespective of whether
the conversion can be done at compile time or not. This can be
used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.) |
The ThresholdLearning algorithm is mostly intended to be used to create DecisionStump weak classifiers in the context of an AdaBoostTModel learning algorithm. Please refer to the AdaBoostTModel class for more examples on using the classifier in this scenario. A simple example is shown below:
// Let's say we want to classify the following 2-dimensional // data samples into 2 possible classes, either true or false: double[][] inputs = { new double[] { 10, 42 }, new double[] { 162, 96 }, new double[] { 125, 20 }, new double[] { 96, 6 }, new double[] { 2, 73 }, new double[] { 52, 51 }, new double[] { 71, 49 }, }; // And those are their associated class labels bool[] outputs = { false, false, true, true, false, false, true }; // We can create an AdaBoost algorithm as: var learner = new AdaBoost<DecisionStump>() { Learner = (p) => new ThresholdLearning(), // Train until: MaxIterations = 5, Tolerance = 1e-3 }; // Now, we can use the Learn method to learn a boosted classifier Boost<DecisionStump> classifier = learner.Learn(inputs, outputs); // And we can test its performance using (error should be 0): ConfusionMatrix cm = ConfusionMatrix.Estimate(classifier, inputs, outputs); double error = cm.Error; // should be 0.0 double acc = cm.Accuracy; // should be 1.0 double kappa = cm.Kappa; // should be 1.0 // And compute a decision for a single data point using: bool y = classifier.Decide(inputs[0]); // result should false
It is also possible to use the ThresholdLearning as a standalone learning algorithm. An example is given below:
// Let's say we want to classify the following 2-dimensional // data samples into 2 possible classes, either true or false: double[][] inputs = { new double[] { 10, 42 }, new double[] { 162, 96 }, new double[] { 125, 20 }, new double[] { 96, 6 }, new double[] { 2, 73 }, new double[] { 52, 51 }, new double[] { 71, 49 }, }; // And those are their associated class labels bool[] outputs = { false, false, true, true, false, false, true }; // We create a learning algorithm as: var teacher = new ThresholdLearning(); // Now, we can use the Learn method to learn a classifier: DecisionStump classifier = teacher.Learn(inputs, outputs); // Now, we can check how good it is using a confusion matrix: var cm = ConfusionMatrix.Estimate(classifier, inputs, outputs); double error = cm.Error; // should be ~0.14 // We can also compute the model outputs for new samples using bool y = classifier.Decide(new double[] { 71, 48 }); // should be false