@@ -8,32 +8,65 @@ public class FeatureVector {
8
8
private final Features features ;
9
9
private final double [] vector ;
10
10
11
+ /**
12
+ * Constructor
13
+ * @param features the features
14
+ */
11
15
public FeatureVector (Features features ) {
12
16
this .features = features ;
13
17
this .vector = new double [features .getLength ()];
14
18
}
15
19
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
+ */
16
26
public FeatureVector add (String feature , boolean value ) {
17
27
add (feature , value ? 1.0 : 0.0 );
18
28
return this ;
19
29
}
20
30
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
+ */
21
37
public FeatureVector add (int index , boolean value ) {
22
38
add (index , value ? 1.0 : 0.0 );
23
39
return this ;
24
40
}
25
41
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
+ */
26
48
public FeatureVector add (int index , double value ) {
27
49
this .vector [index ] = value ;
28
50
return this ;
29
51
}
30
52
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
+ */
31
59
public FeatureVector add (String feature , double value ) {
32
60
int index = this .features .getFeatureIndex (feature );
33
61
add (index , value );
34
62
return this ;
35
63
}
36
64
65
+ /**
66
+ * Get the feature value by index.
67
+ * @param index the feature index
68
+ * @return the double value
69
+ */
37
70
public double get (int index ) {
38
71
if (index >= vector .length ) {
39
72
throw new IllegalArgumentException (String .format ("index must be less than %d" , index ));
@@ -42,11 +75,21 @@ public double get(int index) {
42
75
return vector [index ];
43
76
}
44
77
78
+ /**
79
+ * Get the feature value by name.
80
+ * @param feature the feature name
81
+ * @return the double value
82
+ */
45
83
public double get (String feature ) {
46
84
int index = features .getFeatureIndex (feature );
47
85
return get (index );
48
86
}
49
87
88
+ /**
89
+ * Returns true when the feature name is present in this feature vector.
90
+ * @param feature feature name
91
+ * @return boolean
92
+ */
50
93
public boolean hasFeature (String feature ) {
51
94
return this .features .getFeatureNames ().contains (feature );
52
95
}
0 commit comments