Skip to content

Commit 6efea9e

Browse files
committed
updated javadoc
1 parent cf7a286 commit 6efea9e

13 files changed

+186
-2
lines changed

src/main/java/rocks/vilaverde/classifier/Classifier.java

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
import java.util.Map;
55
import java.util.Set;
66

7+
/**
8+
* Interface to be defined by classifier implementations. A classifier will provide a classification
9+
* for a provided feature vector.
10+
* @param <T>
11+
*/
712
public interface Classifier<T> {
813

914
/**

src/main/java/rocks/vilaverde/classifier/FeatureVector.java

+43
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,65 @@ public class FeatureVector {
88
private final Features features;
99
private final double[] vector;
1010

11+
/**
12+
* Constructor
13+
* @param features the features
14+
*/
1115
public FeatureVector(Features features) {
1216
this.features = features;
1317
this.vector = new double[features.getLength()];
1418
}
1519

20+
/**
21+
* Add a feature by name.
22+
* @param feature name of the feature
23+
* @param value the feature value
24+
* @return the FeatureVector
25+
*/
1626
public FeatureVector add(String feature, boolean value) {
1727
add(feature, value ? 1.0 : 0.0);
1828
return this;
1929
}
2030

31+
/**
32+
* Add a feature by index.
33+
* @param index index of the feature
34+
* @param value the feature value
35+
* @return the FeatureVector
36+
*/
2137
public FeatureVector add(int index, boolean value) {
2238
add(index, value ? 1.0 : 0.0);
2339
return this;
2440
}
2541

42+
/**
43+
* Add a feature by index.
44+
* @param index index of the feature
45+
* @param value the feature value
46+
* @return the FeatureVector
47+
*/
2648
public FeatureVector add(int index, double value) {
2749
this.vector[index] = value;
2850
return this;
2951
}
3052

53+
/**
54+
* Add a feature by name.
55+
* @param feature name of the feature
56+
* @param value the feature value
57+
* @return the FeatureVector
58+
*/
3159
public FeatureVector add(String feature, double value) {
3260
int index = this.features.getFeatureIndex(feature);
3361
add(index, value);
3462
return this;
3563
}
3664

65+
/**
66+
* Get the feature value by index.
67+
* @param index the feature index
68+
* @return the double value
69+
*/
3770
public double get(int index) {
3871
if (index >= vector.length) {
3972
throw new IllegalArgumentException(String.format("index must be less than %d", index));
@@ -42,11 +75,21 @@ public double get(int index) {
4275
return vector[index];
4376
}
4477

78+
/**
79+
* Get the feature value by name.
80+
* @param feature the feature name
81+
* @return the double value
82+
*/
4583
public double get(String feature) {
4684
int index = features.getFeatureIndex(feature);
4785
return get(index);
4886
}
4987

88+
/**
89+
* Returns true when the feature name is present in this feature vector.
90+
* @param feature feature name
91+
* @return boolean
92+
*/
5093
public boolean hasFeature(String feature) {
5194
return this.features.getFeatureNames().contains(feature);
5295
}

src/main/java/rocks/vilaverde/classifier/Features.java

+22
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ public static Features of(String ... features) {
3737
return new Features(features);
3838
}
3939

40+
/**
41+
* Convert a Set of Strings to a Features object.
42+
* @param features the Set of strings
43+
* @return a Features
44+
*/
4045
public static Features fromSet(Set<String> features) {
4146
return new Features(features.toArray(new String[0]));
4247
}
@@ -56,6 +61,10 @@ FeatureVector newSample() {
5661
return new FeatureVector(this);
5762
}
5863

64+
/**
65+
* Add a Feature to the set of features.
66+
* @param feature Feature name
67+
*/
5968
public void addFeature(String feature) {
6069
if (!allowFeatureAdd) {
6170
throw new IllegalStateException("features are immutable");
@@ -72,10 +81,19 @@ public void addFeature(String feature) {
7281
}
7382
}
7483

84+
/**
85+
* Get the number of features in this Features.
86+
* @return the size of teh features.
87+
*/
7588
public int getLength() {
7689
return this.features.size();
7790
}
7891

92+
/**
93+
* Get the index of a feature from the feature vector.
94+
* @param feature the feature name
95+
* @return the position in the array that will hold this feature
96+
*/
7997
public int getFeatureIndex(String feature) {
8098
Integer index = this.features.get(feature);
8199
if (index == null) {
@@ -85,6 +103,10 @@ public int getFeatureIndex(String feature) {
85103
return index;
86104
}
87105

106+
/**
107+
* Get the names of the features in the model.
108+
* @return Set of feature names
109+
*/
88110
public Set<String> getFeatureNames() {
89111
return Collections.unmodifiableSet(this.features.keySet());
90112
}

src/main/java/rocks/vilaverde/classifier/Operator.java

+15
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,15 @@
33
import java.util.function.BiFunction;
44

55
public enum Operator {
6+
/** Less than */
67
LT("<", (leftOperand, rightOperand) -> leftOperand < rightOperand),
8+
/** Greater than */
79
GT(">", (leftOperand, rightOperand) -> leftOperand > rightOperand),
10+
/** Less than or Equal */
811
LT_EQ("<=", (leftOperand, rightOperand) -> leftOperand <= rightOperand),
12+
/** Greater than or equal */
913
GT_EQ(">=", (leftOperand, rightOperand) -> leftOperand >= rightOperand),
14+
/** Equal */
1015
EQ("=", (leftOperand, rightOperand) -> doubleIsSame(leftOperand, rightOperand, .0001));
1116

1217
private final String operator;
@@ -42,10 +47,20 @@ private static boolean doubleIsSame(double d1, double d2, double delta) {
4247
}
4348
}
4449

50+
/**
51+
* Apply this operation on the operands.
52+
* @param leftOperand the value left of the operator
53+
* @param rightOperand the value right of the operator
54+
* @return result of the operation
55+
*/
4556
public boolean apply(Double leftOperand, Double rightOperand) {
4657
return this.operation.apply(leftOperand, rightOperand);
4758
}
4859

60+
/**
61+
* For debugging
62+
* @return String
63+
*/
4964
@Override
5065
public String toString() {
5166
return operator;

src/main/java/rocks/vilaverde/classifier/Prediction.java

+8
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@
55
*/
66
public interface Prediction<T> {
77

8+
/**
9+
* Gets the prediction value.
10+
* @return type T
11+
*/
812
T get();
913

14+
/**
15+
* Gets the probability of the prediction.
16+
* @return an array of double values
17+
*/
1018
double[] getProbability();
1119
}

src/main/java/rocks/vilaverde/classifier/dt/AbstractDecisionTreeVisitor.java

+21-1
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,48 @@
33
import rocks.vilaverde.classifier.Visitor;
44

55
/**
6-
* feature6 a {@link DecisionTreeClassifier} using Depth first traversal.
6+
* Visits a {@link DecisionTreeClassifier} using Depth first traversal.
77
*/
88
public abstract class AbstractDecisionTreeVisitor implements Visitor<TreeNode> {
99

10+
/**
11+
* Visit a generic TreeNode.
12+
* @param object the the object being visited
13+
*/
1014
@Override
1115
public void visit(TreeNode object) {
1216
visitBase(object);
1317
}
1418

19+
/**
20+
* Base method that is visited by all TreeNode objects.
21+
* @param object
22+
*/
1523
protected void visitBase(TreeNode object) {
1624
}
1725

26+
/**
27+
* Visit the EndNode, and by default will call visitBase first.
28+
* @param object
29+
*/
1830
public void visit(EndNode object) {
1931
visitBase(object);
2032
}
2133

34+
/**
35+
* Visit the ChoiceNode, and by default will call visitBase first.
36+
* @param object
37+
*/
2238
public void visit(ChoiceNode object) {
2339
visitBase(object);
2440

2541
object.getChild().accept(this);
2642
}
2743

44+
/**
45+
* Visit the DecisionNode, and by default will call visitBase first.
46+
* @param object
47+
*/
2848
public void visit(DecisionNode object) {
2949
visitBase(object);
3050

src/main/java/rocks/vilaverde/classifier/dt/ChoiceNode.java

+32-1
Original file line numberDiff line numberDiff line change
@@ -9,35 +9,66 @@
99
public class ChoiceNode extends TreeNode {
1010
private final Operator op;
1111
private final Double value;
12-
1312
private TreeNode child;
1413

14+
/**
15+
* Creates a ChoiceNode from an Operator and a value to be used for evaluation.
16+
* @param op the Operator
17+
* @param value the value
18+
* @return the ChoiceNode
19+
*/
1520
public static ChoiceNode create(Operator op, Double value) {
1621
return new ChoiceNode(op, value);
1722
}
1823

24+
/**
25+
* Private constructor, use the creator static function.
26+
* @param op the Operator
27+
* @param value the value
28+
*/
1929
private ChoiceNode(Operator op, Double value) {
2030
this.op = op;
2131
this.value = value;
2232
}
2333

34+
/**
35+
* Add a child node to the ChoiceNode.
36+
* @param child the child to add
37+
*/
2438
public void addChild(TreeNode child) {
2539
this.child = child;
2640
}
2741

42+
/**
43+
* Accessor for the child TreeNode
44+
* @return the TreeNode
45+
*/
2846
public TreeNode getChild() {
2947
return child;
3048
}
3149

50+
/**
51+
* Accepts a visitor and calls visit using this node.
52+
* @param visitor the visitor
53+
*/
3254
@Override
3355
public void accept(AbstractDecisionTreeVisitor visitor) {
3456
visitor.visit(this);
3557
}
3658

59+
/**
60+
* For debugging.
61+
* @return The formatted String.
62+
*/
3763
public String toString() {
3864
return String.format("%s %s", op.toString(), value.toString());
3965
}
4066

67+
/**
68+
* Evaluate this ChoiceNode against the provided value.
69+
* @param featureValue the feature value this choice will be evaluated against.
70+
* @return a boolean result of the evaluation.
71+
*/
4172
public boolean eval(double featureValue) {
4273
return op.apply(featureValue, value);
4374
}

src/main/java/rocks/vilaverde/classifier/dt/PredictionFactory.java

+9
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,17 @@
88
@FunctionalInterface
99
public interface PredictionFactory<T> {
1010

11+
/**
12+
* The prediction class is of type boolean in the model.
13+
*/
1114
PredictionFactory<Boolean> BOOLEAN = value -> Boolean.valueOf(value.toLowerCase());
15+
/**
16+
* The prediction class is of type Integer in the model.
17+
*/
1218
PredictionFactory<Integer> INTEGER = Integer::valueOf;
19+
/**
20+
* The prediction class is of type Double in the model.
21+
*/
1322
PredictionFactory<Double> DOUBLE = Double::parseDouble;
1423

1524
/**

src/main/java/rocks/vilaverde/classifier/dt/TreeClassifier.java

+5
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,10 @@
99
*/
1010
public interface TreeClassifier<T> extends Classifier<T> {
1111

12+
/**
13+
* Gets a Prediction for a provided FeatureVector.
14+
* @param features the feature vector
15+
* @return a Prediction
16+
*/
1217
Prediction<T> getClassification(FeatureVector features);
1318
}

src/main/java/rocks/vilaverde/classifier/dt/TreeNode.java

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
import rocks.vilaverde.classifier.Visitable;
44

5+
/**
6+
* Base class for all nodes in a Decision Tree.
7+
*/
58
public abstract class TreeNode implements Visitable<TreeNode, AbstractDecisionTreeVisitor> {
69

710
/**

src/main/java/rocks/vilaverde/classifier/dt/visitors/FeatureNameVisitor.java

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ public void visit(DecisionNode object) {
2424
super.visit(object);
2525
}
2626

27+
/**
28+
* Get the Set of strings representing the features in the model.
29+
* @return Set of String
30+
*/
2731
public Set<String> getFeatureNames() {
2832
return featureNames;
2933
}

src/main/java/rocks/vilaverde/classifier/ensemble/RandomForestClassifier.java

+5
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,11 @@ public double[][] predict_proba(FeatureVector ... samples) {
140140
return probabilities;
141141
}
142142

143+
/**
144+
* Predict for a single sample.
145+
* @param sample the FeatureVector
146+
* @return the prediction
147+
*/
143148
protected T predictSingle(FeatureVector sample) {
144149
return getClassification(sample).get();
145150
}

0 commit comments

Comments
 (0)