edu.udo.cs.yale.operator.validation
Class FixedSplitValidationChain
java.lang.Object
edu.udo.cs.yale.operator.Operator
edu.udo.cs.yale.operator.OperatorChain
edu.udo.cs.yale.operator.validation.ValidationChain
edu.udo.cs.yale.operator.validation.FixedSplitValidationChain
- All Implemented Interfaces:
- ConfigurationListener
public class FixedSplitValidationChain
- extends ValidationChain
A FixedSplitValidationChain splits up the example set at a fixed point into a
training and test set and evaluates the model (linear sampling). For
non-linear sampling methods, i.e. the data is shuffled, the specified amounts
of data are used as training and test set. The sum of both must be smaller
than the input example set size.
At least either the training set size must be specified (rest is used for
testing) or the test set size must be specified (rest is used for training).
If both are specified, the rest is not used at all.
The first inner operator must accept an
ExampleSet
while the second must accept an
ExampleSet
and the output of the first (which
in most cases is a Model
) and must produce
a PerformanceVector
.
- Version:
- $Id: FixedSplitValidationChain.java,v 1.18 2006/04/12 18:04:24
ingomierswa Exp $
- Author:
- Simon Fischer, Ingo Mierswa
Method Summary |
IOObject[] |
estimatePerformance(ExampleSet inputSet)
This is the main method of the validation chain and must be implemented
to estimate a performance of inner operators on the given example set. |
int |
getNumberOfValidationSteps()
Returns the number of validation steps, i.e. the number of times the
inner operators of this validation chain are performed. |
java.util.List<ParameterType> |
getParameterTypes()
Returns a list of ParameterTypes describing the parameters of
this operator. |
Methods inherited from class edu.udo.cs.yale.operator.validation.ValidationChain |
apply, evaluate, getInnerOperatorCondition, getInputClasses, getInputDescription, getMaxNumberOfInnerOperators, getMinNumberOfInnerOperators, getNumberOfSteps, getOutputClasses, learn, setResult |
Methods inherited from class edu.udo.cs.yale.operator.OperatorChain |
addAddListener, addOperator, addOperator, checkDeprecations, checkIO, checkNumberOfInnerOperators, checkProperties, clearErrorList, clearStepCounter, cloneOperator, countStep, createExperimentTree, delete, experimentFinished, experimentStarts, getAllInnerOperators, getCurrentStep, getIndexOfOperator, getInnerOperatorForName, getInnerOperatorsXML, getNumberOfAllOperators, getNumberOfChildrensSteps, getNumberOfOperators, getOperator, getOperatorFromAll, getOperators, isEnabled, performAdditionalChecks, removeAddListener, removeOperator, setEnabled, setExperiment, shouldReturnInnerOutput |
Methods inherited from class edu.udo.cs.yale.operator.Operator |
addError, addValue, addWarning, apply, createExperimentTree, createFromXML, createMarkedExperimentTree, getAddOnlyAdditionalOutput, getApplyCount, getDeliveredOutputClasses, getDeprecationInfo, getDesiredInputClasses, getErrorList, getExperiment, getInput, getInput, getInput, getIOContainerForInApplyLoopBreakpoint, getName, getOperatorClassName, getOperatorDescription, getParameter, getParameterAsBoolean, getParameterAsColor, getParameterAsDouble, getParameterAsFile, getParameterAsInt, getParameterAsString, getParameterList, getParameters, getParameterType, getParent, getStartTime, getStatus, getUserDescription, getValue, getValues, getXML, hasBreakpoint, hasBreakpoint, hasInput, inApplyLoop, isParameterSet, logMessage, register, remove, rename, resume, setBreakpoint, setInput, setListParameter, setOperatorParameters, setParameter, setParameters, setParent, setUserDescription, toString, writeXML |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
FixedSplitValidationChain
public FixedSplitValidationChain(OperatorDescription description)
estimatePerformance
public IOObject[] estimatePerformance(ExampleSet inputSet)
throws OperatorException
- Description copied from class:
ValidationChain
- This is the main method of the validation chain and must be implemented
to estimate a performance of inner operators on the given example set.
The implementation can make use of the provided helper methods in this
class.
- Specified by:
estimatePerformance
in class ValidationChain
- Throws:
OperatorException
getNumberOfValidationSteps
public int getNumberOfValidationSteps()
- Description copied from class:
ValidationChain
- Returns the number of validation steps, i.e. the number of times the
inner operators of this validation chain are performed. For example this
method should returns the number of iterations in case of a
crossvalidation.
- Specified by:
getNumberOfValidationSteps
in class ValidationChain
getParameterTypes
public java.util.List<ParameterType> getParameterTypes()
- Description copied from class:
Operator
- Returns a list of ParameterTypes describing the parameters of
this operator. The default implementation returns an empty list if no
input objects can be retained and special parameters for those input
objects which can be prevented from being consumed.
- Overrides:
getParameterTypes
in class ValidationChain
Copyright © 2001-2006