edu.cmu.minorthird.classify
Interface Dataset.Split

Enclosing interface:
Dataset

public static interface Dataset.Split

A partitioning of the dataset into a number of train/test partitions


Method Summary
 int getNumPartitions()
          Return the number of partitions
 Dataset getTest(int k)
          Return a dataset containing the test cases in the k-th split
 Dataset getTrain(int k)
          Return a dataset containing the training cases in the k-th split
 

Method Detail

getNumPartitions

int getNumPartitions()
Return the number of partitions


getTrain

Dataset getTrain(int k)
Return a dataset containing the training cases in the k-th split


getTest

Dataset getTest(int k)
Return a dataset containing the test cases in the k-th split