- DataSet - Class in cs2.introml
-
Represents a set of examples
- DataSetTest - Class in cs2.introml.tests
-
- DataSetTest() - Constructor for class cs2.introml.tests.DataSetTest
-
- DenseExample - Class in cs2.introml
-
An array-backed example, useful in situations
in which most if not all features are non-zero.
- DenseExample(Object, int) - Constructor for class cs2.introml.DenseExample
-
Initializes the example with
all-zero values
- DenseExample(Object, double[]) - Constructor for class cs2.introml.DenseExample
-
Initializes the example using
an array of features
- distance(TestingExample, TestingExample) - Method in interface cs2.introml.DistanceFunction
-
Returns a real number "distance" between two
testing examples
- distance(TestingExample, TestingExample) - Method in class cs2.introml.EuclideanDistanceSquared
-
- DistanceFunction - Interface in cs2.introml
-
Represents a distance function between two
testing examples.