Package edu.udo.cs.yale.operator

Provides YALE operators for machine learning and data pre-processing.

See:
          Description

Interface Summary
AddListener These listeners will be notified after a new operator was added to a chain.
IOObject This interface must be implemented by all objects that can be input/output objects for Operators.
Model Model is the interface for all objects which change a data set.
ResultObject This interface extends IOObject and is hence an object which can be handled by operators.
Saveable Interface for resultobjects that can be saved to disc.
ValueInterface The interface for values which can logged and plotted during experiments.
 

Class Summary
AbstractIOObject This is an abstract superclass for all IOObject.
AbstractModel Abstract model is the superclass for all objects which change a data set.
CommandLineOperator This operator executes a system command.
ContainerModel This model is a container for all models which should be applied in a sequence.
ExperimentOperator Each experiment must contain exactly one operator of this class and it must be the root operator of the experiment.
InputDescription This class is used to describe the required input of an operator and the operator's behavior with respect to consumation of this input object.
IOConsumeOperator Most Yale operators should define their desired input and delivered output in a senseful way.
IOContainer Input for Operator.apply().
IODescription This class is a description of the (expected) input and (guaranteed) output classes of operators.
IOModel Abstract superclass of all models that are read in a way implemented by the readData(ObjectInputStream) method after having been constructed.
IOMultiplyOperator In some cases you might want to apply different parts of the experiment on the same input object.
MacroDefinitionOperator (Re-)Define macros for the current experiment.
ModelApplier This operator applies a Model to an ExampleSet.
Operator An operator accepts an array of input objects and generates an array of output objects that can be processed by other operators.
OperatorChain A chain of operators that is subsequently applied.
OperatorDescription Data container for name, class, short name, path and the (very short) description of an operator.
ResultObjectAdapter An adapter class for the interface ResultObject.
SerializableModel Superclass of all models which must be serializable to write them to a file.
SimpleOperatorChain A simple operator chain which can have an arbitrary number of inner operators.
SimpleResultObject A SimpleResulObject is only a helper class for very simple results with only a name and descriptive text.
Value A value contains a key and a description.
 

Exception Summary
ExperimentStoppedException Exception class whose instances are thrown by instances of the class 'Operator' or of one of its subclasses.
IllegalInputException Will be thrown if an operator needs an input type which is not provided or gets the wrong input.
IllegalNumberOfInnerOperatorsException Will be thrown if an operator chain has the wrong number of inner operators.
MissingIOObjectException Will be thrown if an operator can not get its desired input.
OperatorCreationException Exception class whose instances are thrown during the creation of operators.
OperatorException Exception class whose instances are thrown by instances of the class Operator or of one of its subclasses.
UserError Exception class whose instances are thrown due to a user error, for example missing files or wrong operator architecture.
WrongNumberOfInnerOperatorsException Will be thrown if an operator chain needs a specific number of inner operators which is not fulfilled.
 

Package edu.udo.cs.yale.operator Description

Provides YALE operators for machine learning and data pre-processing.



Copyright © 2001-2006