|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.AbstractIOObject
edu.udo.cs.yale.operator.ResultObjectAdapter
edu.udo.cs.yale.example.AbstractExampleSet
edu.udo.cs.yale.example.ExampleSetAdapter
public class ExampleSetAdapter
This example set delegates all method calls to an underlying example set.
Subclasses only need to override necessary methods whose behavior they want
to change. Methods implemented by AbstractExampleSet are not re-implemented.
Subclasses usually override iterator()
,
getExample(int index)
, size()
.
Field Summary | |
---|---|
protected ExampleSet |
delegate
The underlying example set the methods calls are delegated to. |
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 |
Constructor Summary | |
---|---|
ExampleSetAdapter(ExampleSet exampleSet)
Constructs a new ExampleSet that delegates all method calls to the given ExampleSet. |
|
ExampleSetAdapter(ExampleSetAdapter exampleSet)
Clone constructor. |
Method Summary | |
---|---|
void |
addAttribute(Attribute attribute)
Adds a new attribute. |
void |
clearUserData()
Clears all user data. |
Attribute |
getAttribute(int index)
Returns the Attribute with the given index. |
Attribute |
getAttribute(java.lang.String name)
Returns the attribute with the given name. |
Example |
getExample(int index)
Returns the i-th example. |
Example |
getExampleFromId(double id)
Returns the example with the given id value. |
ExampleReader |
getExampleReader()
Deprecated. |
ExampleTable |
getExampleTable()
Returns the underlying example table. |
int |
getNumberOfAttributes()
Returns the number of attributes of the examples in this set. |
int |
getSize()
Deprecated. |
Attribute |
getSpecialAttribute(java.lang.String name)
Returns the special attribute with the given name or null if no special attribute with this name exists. |
java.util.Collection<java.lang.String> |
getSpecialAttributeNames()
Returns a collection of all keys of special attributes. |
java.util.Map<java.lang.String,Attribute> |
getSpecialAttributes()
Returns a map of all special attribute names to the corresponding attributes. |
java.lang.Object |
getUserData(java.lang.String key)
Returns the user data set by setUserData() |
java.util.Set<java.lang.String> |
getUserDataKeys()
Returns all askable keys of user data. |
java.util.Iterator<Example> |
iterator()
|
void |
remapAllIds()
Remaps all ids. |
void |
removeAttribute(Attribute attribute)
Removes an attribute. |
Attribute |
replaceAttribute(Attribute first,
Attribute second)
Replaces the first attribute by the second. |
void |
setSpecialAttribute(java.lang.String name,
Attribute attribute)
Adds a special, i.e. named Attribute to the example set. |
void |
setUserData(java.lang.String key,
java.lang.Object data)
Sets arbitrary user data, e.g. to cache certain performance values etc. |
int |
size()
Returns the number of examples in this example set. |
Methods inherited from class edu.udo.cs.yale.operator.ResultObjectAdapter |
---|
addAction, toHTML, toResultString |
Methods inherited from class edu.udo.cs.yale.operator.AbstractIOObject |
---|
read, read, read, write, write |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface edu.udo.cs.yale.operator.ResultObject |
---|
toResultString |
Methods inherited from interface edu.udo.cs.yale.operator.IOObject |
---|
write, write |
Field Detail |
---|
protected ExampleSet delegate
Constructor Detail |
---|
public ExampleSetAdapter(ExampleSetAdapter exampleSet)
public ExampleSetAdapter(ExampleSet exampleSet)
Method Detail |
---|
public int getNumberOfAttributes()
ExampleSet
public Attribute getAttribute(int index)
ExampleSet
public Attribute getAttribute(java.lang.String name)
ExampleSet
public void addAttribute(Attribute attribute)
ExampleSet
public void removeAttribute(Attribute attribute)
ExampleSet
public Attribute replaceAttribute(Attribute first, Attribute second)
ExampleSet
public Attribute getSpecialAttribute(java.lang.String name)
ExampleSet
public void setSpecialAttribute(java.lang.String name, Attribute attribute)
ExampleSet
Attribute
to the example set. Special
attributes are labels, weights, etc., i.e. all non-regular attributes. If
the attribute is already defined, it is replaced. By convention, special
attributes are named lowercase. Special attributes are also delivered by
ExampleSet.getAttribute(String name)
.
public java.util.Collection<java.lang.String> getSpecialAttributeNames()
ExampleSet
public java.util.Map<java.lang.String,Attribute> getSpecialAttributes()
ExampleSet
public ExampleTable getExampleTable()
ExampleSet
public void setUserData(java.lang.String key, java.lang.Object data)
ExampleSet
public java.lang.Object getUserData(java.lang.String key)
ExampleSet
ExampleSet.setUserData(String,Object)
public void clearUserData()
ExampleSet
public java.util.Set<java.lang.String> getUserDataKeys()
ExampleSet
public void remapAllIds()
ExampleSet
@Deprecated public ExampleReader getExampleReader()
ExampleSet
public java.util.Iterator<Example> iterator()
public Example getExample(int index)
ExampleSet
ExampleReader
should be used.
@Deprecated public int getSize()
ExampleSet
public int size()
ExampleSet
public Example getExampleFromId(double id)
ExampleSet
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |