public class EvaluationUtils extends Object implements RevisionHandler
Constructor and Description |
---|
EvaluationUtils() |
Modifier and Type | Method and Description |
---|---|
FastVector |
getCVPredictions(Classifier classifier,
Instances data,
int numFolds)
Generate a bunch of predictions ready for processing, by performing a
cross-validation on the supplied dataset.
|
Prediction |
getPrediction(Classifier classifier,
Instance test)
Generate a single prediction for a test instance given the pre-trained
classifier.
|
String |
getRevision()
Returns the revision string.
|
int |
getSeed()
Gets the seed for randomization during cross-validation
|
FastVector |
getTestPredictions(Classifier classifier,
Instances test)
Generate a bunch of predictions ready for processing, by performing a
evaluation on a test set assuming the classifier is already trained.
|
FastVector |
getTrainTestPredictions(Classifier classifier,
Instances train,
Instances test)
Generate a bunch of predictions ready for processing, by performing a
evaluation on a test set after training on the given training set.
|
void |
setSeed(int seed)
Sets the seed for randomization during cross-validation
|
public void setSeed(int seed)
public int getSeed()
public FastVector getCVPredictions(Classifier classifier, Instances data, int numFolds) throws Exception
classifier
- the Classifier to evaluatedata
- the datasetnumFolds
- the number of folds in the cross-validation.Exception
- if an error occurspublic FastVector getTrainTestPredictions(Classifier classifier, Instances train, Instances test) throws Exception
classifier
- the Classifier to evaluatetrain
- the training datasettest
- the test datasetException
- if an error occurspublic FastVector getTestPredictions(Classifier classifier, Instances test) throws Exception
classifier
- the pre-trained Classifier to evaluatetest
- the test datasetException
- if an error occurspublic Prediction getPrediction(Classifier classifier, Instance test) throws Exception
classifier
- the pre-trained Classifier to evaluatetest
- the test instanceException
- if an error occurspublic String getRevision()
getRevision
in interface RevisionHandler
Copyright © 2012 University of Waikato, Hamilton, NZ. All Rights Reserved.