|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.example.Example
public class Example
An example consists of regular attributes used for learning purposes and a
set of special attributes like labels, clusters, or ids. The data is backed
by a DataRow. Hence, all values are actually doubles, symbolic values are
mapped to integers stored in doubles.
Since ExampleSet
s are only a view on ExampleTable
s,
Examples are generated on the fly by ExampleReader
s. Since they only
contain the currently selected attributes operators need not to consider
attribute selections or example subsets (samplings).
A given weight applier scales the attribute values if this example is part of
an weighted example set.
Field Summary | |
---|---|
private Attribute[] |
attributes
The attributes used by this example. |
private AttributeWeights |
attributeWeights
The weights of the attributes. |
private DataRow |
data
The data for this example. |
static java.lang.String |
SEPARATOR
Separator used in the getAttributesAsString() method (tab). |
static java.lang.String |
SPARSE_SEPARATOR
Separates indices from values in sparse format (colon). |
private java.util.Map<java.lang.String,Attribute> |
specialAttributes
The map with all special attributes. |
private WeightApplier |
weightApplier
The value of all attributes is calculated as a function f(original value, weight) by an instance of WeightApplier . |
Constructor Summary | |
---|---|
Example(DataRow data,
Attribute[] attributes,
java.util.Map<java.lang.String,Attribute> specialAttributes)
Creates a simple example without attribute weights and weight applier (null). |
|
Example(DataRow data,
Attribute[] attributes,
java.util.Map<java.lang.String,Attribute> specialAttributes,
AttributeWeights attributeWeights,
WeightApplier weightApplier)
Creates a new Example that uses the data stored in a DataRow. |
Method Summary | |
---|---|
void |
copySpecialAttributesTo(Example other)
Copies the values of the special attributes of this example into the given example. |
Attribute |
getAttribute(int i)
Returns the i-th regular attribute. |
Attribute |
getAttribute(java.lang.String name)
Returns the special attribute with the given name. |
java.lang.String |
getAttributesAsSparseString()
Calls getAttributesAsSparseString(String,String) using
default separator characters. |
java.lang.String |
getAttributesAsSparseString(java.lang.String separator,
java.lang.String indexValueSeparator)
Returns the attribute values in the format index:value index:value Index starts with 1. |
java.lang.String |
getAttributesAsString()
This string output can be used for file output. |
java.lang.String |
getAttributesAsString(java.lang.String sep)
This string output can be used for file output. |
double |
getConfidence(java.lang.String value)
Returns the confidence for the given value. |
DataRow |
getDataRow()
Returns the data row which backs up the example in the example table. |
double |
getLabel()
Returns the double value of the label attribute. |
int |
getNumberOfAttributes()
Returns the number of regular attributes. |
double |
getPredictedLabel()
Returns the double value of the predicted label attribute. |
java.util.Collection<java.lang.String> |
getSpecialAttributeNames()
Returns a collection of the names of all special attributes defined for this example. |
double |
getUnweightedValue(Attribute a)
Returns the original, unweighted value of the given attribute. |
double |
getValue(Attribute a)
Returns the value of attribute a. |
double |
getValue(int index)
Invokes the method getValue(Attribute) for the i-th regular attribute. |
java.lang.String |
getValueAsString(Attribute attribute)
Returns the value of this attribute as string representation, i.e. the number as string for numerical attributes and the correctly mapped categorical value for nominal values. |
java.lang.String |
getValueAsString(Attribute attribute,
int fractionDigits)
Returns the value of this attribute as string representation, i.e. the number as string for numerical attributes and the correctly mapped categorical value for nominal values. |
double |
getWeight()
Returns the double value of the weight attribute. |
void |
setConfidence(java.lang.String value,
double confidence)
Sets the confidence for the given nominal value. |
void |
setLabel(double value)
Sets the value for the label attribute. |
void |
setPredictedLabel(double value)
Sets the value for the label attribute. |
void |
setValue(Attribute a,
double value)
Sets the value of attribute a. |
void |
setValue(Attribute a,
java.lang.String str)
Sets the value of attribute a which must be a nominal attribute. |
void |
setWeight(double value)
Sets the value for the weight attribute. |
java.lang.String |
toSparseString(int format)
Returns regular and some special attributes (label, id, and example weight) in sparse format. |
java.lang.String |
toString()
This method returns a dense string representation of the example. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String SEPARATOR
public static final java.lang.String SPARSE_SEPARATOR
private DataRow data
private Attribute[] attributes
private java.util.Map<java.lang.String,Attribute> specialAttributes
private AttributeWeights attributeWeights
private WeightApplier weightApplier
WeightApplier
.
Constructor Detail |
---|
public Example(DataRow data, Attribute[] attributes, java.util.Map<java.lang.String,Attribute> specialAttributes)
public Example(DataRow data, Attribute[] attributes, java.util.Map<java.lang.String,Attribute> specialAttributes, AttributeWeights attributeWeights, WeightApplier weightApplier)
Method Detail |
---|
public DataRow getDataRow()
public Attribute getAttribute(int i)
public Attribute getAttribute(java.lang.String name)
public int getNumberOfAttributes()
public java.util.Collection<java.lang.String> getSpecialAttributeNames()
public void copySpecialAttributesTo(Example other)
public double getValue(int index)
getValue(Attribute)
for the i-th regular attribute.
public double getValue(Attribute a)
public double getUnweightedValue(Attribute a)
public void setValue(Attribute a, double value)
public void setValue(Attribute a, java.lang.String str)
public java.lang.String getValueAsString(Attribute attribute)
public java.lang.String getValueAsString(Attribute attribute, int fractionDigits)
public double getLabel()
public void setLabel(double value)
public double getPredictedLabel()
public void setPredictedLabel(double value)
public double getConfidence(java.lang.String value)
public void setConfidence(java.lang.String value, double confidence)
public double getWeight()
public void setWeight(double value)
public java.lang.String getAttributesAsString()
public java.lang.String getAttributesAsString(java.lang.String sep)
public java.lang.String getAttributesAsSparseString()
getAttributesAsSparseString(String,String)
using
default separator characters.
public java.lang.String getAttributesAsSparseString(java.lang.String separator, java.lang.String indexValueSeparator)
separator
- separates attributesindexValueSeparator
- separates index and value.public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String toSparseString(int format)
format
- one of the formats specified in
SparseFormatDataRowReader
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |