Uses of Class
edu.columbia.cs.ref.model.Dataset

Packages that use Dataset
edu.columbia.cs.ref.model   
edu.columbia.cs.ref.tool.collection.splitter   
edu.columbia.cs.ref.tool.collection.splitter.impl   
 

Uses of Dataset in edu.columbia.cs.ref.model
 

Methods in edu.columbia.cs.ref.model with parameters of type Dataset
 void Dataset.addAll(Dataset<E> inputs)
          Adds the all the elements that are in the input dataset to the current dataset
 

Uses of Dataset in edu.columbia.cs.ref.tool.collection.splitter
 

Methods in edu.columbia.cs.ref.tool.collection.splitter with parameters of type Dataset
abstract  void Splitter.split(Dataset<E> directory, java.io.File outputFolder)
          Given a dataset, this method is responsible for creating the folds for it.
 

Uses of Dataset in edu.columbia.cs.ref.tool.collection.splitter.impl
 

Methods in edu.columbia.cs.ref.tool.collection.splitter.impl with parameters of type Dataset
 void KFoldSplitter.split(Dataset<E> dataset, java.io.File outputFolder)
          This method is an implementation of the split method for the K-Fold cross validation method.