edu.udo.cs.yale.example
Class ConditionedExampleSet
java.lang.Object
edu.udo.cs.yale.operator.AbstractIOObject
edu.udo.cs.yale.operator.ResultObjectAdapter
edu.udo.cs.yale.example.AbstractExampleSet
edu.udo.cs.yale.example.ExampleSetAdapter
edu.udo.cs.yale.example.ConditionedExampleSet
- All Implemented Interfaces:
- ExampleSet, IOObject, ResultObject, java.lang.Cloneable, java.lang.Iterable<Example>
public class ConditionedExampleSet
- extends ExampleSetAdapter
Hides Example
s that do not fulfill a given Condition
. Uses
a ConditionExampleReader
. Please note that the method
updateCondition() must be invoked each time the condition changed its
acceptance behaviour!
- Version:
- $Id: ConditionedExampleSet.java,v 2.7 2006/09/30 00:05:30 ingomierswa Exp $
- Author:
- Ingo Mierswa
Fields inherited from interface edu.udo.cs.yale.example.ExampleSet |
ATTRIBUTE_NAME, BATCH_NAME, CLUSTER_NAME, CONFIDENCE_NAME, ID_NAME, KNOWN_ATTRIBUTE_TYPES, LABEL_NAME, PREDICTION_NAME, TYPE_ATTRIBUTE, TYPE_BATCH, TYPE_CLUSTER, TYPE_ID, TYPE_LABEL, TYPE_PREDICTION, TYPE_WEIGHT, WEIGHT_NAME |
Method Summary |
Example |
getExample(int index)
Returns the i-th example fulfilling the condition. |
java.util.Iterator<Example> |
iterator()
Returns a ConditionExampleReader . |
int |
size()
Counts the number of examples which fulfills the condition. |
void |
updateCondition()
This method should be invoked after changing the condition, i.e. if the
acceptance behavior of the condition has changed. |
Methods inherited from class edu.udo.cs.yale.example.ExampleSetAdapter |
addAttribute, clearUserData, getAttribute, getAttribute, getExampleFromId, getExampleReader, getExampleTable, getNumberOfAttributes, getSize, getSpecialAttribute, getSpecialAttributeNames, getSpecialAttributes, getUserData, getUserDataKeys, remapAllIds, removeAttribute, replaceAttribute, setSpecialAttribute, setUserData |
Methods inherited from class edu.udo.cs.yale.example.AbstractExampleSet |
addAllAttributes, clearPredictedLabel, clearWeight, clone, contains, containsValueType, copy, createClusterAttribute, createDataTable, createSpecialAttribute, createWeightAttribute, equals, getActions, getBlockEndIndex, getCluster, getId, getLabel, getName, getPredictedLabel, getVisualisationComponent, getWeight, recalculateAllAttributeStatistics, recalculateAttributeStatistics, recalculateAttributeStatistics, removeAllAttributes, removeAttribute, setAttributes, setCluster, setId, setLabel, setPredictedLabel, setWeight, toString, writeAttributeFile, writeDataFile, writeSparseAttributeFile, writeSparseDataFile |
Methods inherited from class java.lang.Object |
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
condition
private Condition condition
size
private int size
mapping
private int[] mapping
ConditionedExampleSet
public ConditionedExampleSet(ExampleSet parent,
Condition condition)
- Creates a new example which used only examples fulfilling the given
condition.
ConditionedExampleSet
public ConditionedExampleSet(ConditionedExampleSet exampleSet)
- Clone constructor.
updateCondition
public void updateCondition()
- This method should be invoked after changing the condition, i.e. if the
acceptance behavior of the condition has changed. This is not necessary
for most conditions but might be for conditions which are dynamically
changed.
iterator
public java.util.Iterator<Example> iterator()
- Returns a
ConditionExampleReader
.
- Specified by:
iterator
in interface java.lang.Iterable<Example>
- Overrides:
iterator
in class ExampleSetAdapter
getExample
public Example getExample(int index)
- Returns the i-th example fulfilling the condition.
- Specified by:
getExample
in interface ExampleSet
- Overrides:
getExample
in class ExampleSetAdapter
size
public int size()
- Counts the number of examples which fulfills the condition.
- Specified by:
size
in interface ExampleSet
- Overrides:
size
in class ExampleSetAdapter
Copyright © 2001-2006