Package | Description |
---|---|
gov.sandia.cognition.learning.data |
Provides data set utilities for learning.
|
gov.sandia.cognition.learning.experiment |
Provides experiments for validating the performance of learning algorithms.
|
Modifier and Type | Class and Description |
---|---|
class |
RandomDataPartitioner<DataType>
The
RandomDataPartitioner class implements a randomized data
partitioner that takes a collection of data and randomly splits it into
training and testing sets based on a fixed percentage of training data. |
Modifier and Type | Field and Description |
---|---|
protected RandomizedDataPartitioner<DataType> |
RandomFoldCreator.partitioner
The partitioner used for each fold.
|
Modifier and Type | Method and Description |
---|---|
RandomizedDataPartitioner<DataType> |
RandomFoldCreator.getPartitioner()
Gets the randomized partitioner to use.
|
Modifier and Type | Method and Description |
---|---|
void |
RandomFoldCreator.setPartitioner(RandomizedDataPartitioner<DataType> partitioner)
Sets the randomized partitioner to use.
|
Constructor and Description |
---|
RandomFoldCreator(int numFolds,
RandomizedDataPartitioner<DataType> partitioner)
Creates a new instance of RandomFoldCreator.
|