|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectweka.core.Instances
edu.udo.cs.yale.tools.WekaInstancesAdaptor
public class WekaInstancesAdaptor
This class extends the Weka class Instances and overrides all methods needed
to directly use a Yale ExampleSet
as source for Weka instead of
copying the complete data.
Nested Class Summary | |
---|---|
private class |
WekaInstancesAdaptor.InstanceEnumeration
This enumeration implementation uses an ExampleReader (Iterator) to enumerate the instances. |
Field Summary | |
---|---|
static int |
ASSOCIATION_RULE_MINING
|
static int |
CLUSTERING
|
private ExampleSet |
exampleSet
The example set which backs up the Instances object. |
private FastExample2SparseTransform |
exampleTransform
This transformation might help to speed up the creation of sparse examples. |
private Attribute |
labelAttribute
The YALE label attribute or null if not desired (depending on task). |
static int |
LEARNING
|
private int[] |
mostFrequent
The most frequent nominal values (only used for association rule mining, null otherwise) |
static int |
PREDICTING
|
private static long |
serialVersionUID
|
private int |
taskType
The task type for which this instances object is used. |
static int |
WEIGHTING
|
Fields inherited from class weka.core.Instances |
---|
FILE_EXTENSION, m_Attributes, m_ClassIndex, m_IndicesBuffer, m_Instances, m_RelationName, m_ValueBuffer, SERIALIZED_OBJ_FILE_EXTENSION |
Constructor Summary | |
---|---|
WekaInstancesAdaptor(java.lang.String name,
ExampleSet exampleSet,
int taskType)
Creates a new Instances object based on the given example set. |
Method Summary | |
---|---|
java.util.Enumeration |
enumerateInstances()
Returns an instance enumeration based on an ExampleReader. |
private static weka.core.FastVector |
getAttributeVector(ExampleSet exampleSet,
int taskType)
|
weka.core.Instance |
instance(int i)
Returns the i-th instance. |
int |
numInstances()
Returns the number of instances. |
private static weka.core.Attribute |
toWekaAttribute(Attribute attribute)
Converts an Attribute to a Weka attribute. |
private weka.core.Instance |
toWekaInstance(Example example)
Gets an example and creates a Weka instance. |
Methods inherited from class weka.core.Instances |
---|
add, attribute, attribute, attributeStats, attributeToDoubleArray, checkForAttributeType, checkForStringAttributes, checkInstance, classAttribute, classIndex, compactify, copyInstances, delete, delete, deleteAttributeAt, deleteAttributeType, deleteStringAttributes, deleteWithMissing, deleteWithMissing, deleteWithMissingClass, enumerateAttributes, equalHeaders, errms, firstInstance, freshAttributeInfo, getFirstToken, getIndex, getInstance, getInstanceFull, getInstanceSparse, getLastToken, getNextToken, getRandomNumberGenerator, initTokenizer, insertAttributeAt, instancesAndWeights, kthSmallestValue, kthSmallestValue, lastInstance, main, meanOrMode, meanOrMode, mergeInstances, numAttributes, numClasses, numDistinctValues, numDistinctValues, parseAttribute, partition, quickSort, randomize, readHeader, readInstance, readTillEOL, relationName, renameAttribute, renameAttribute, renameAttributeValue, renameAttributeValue, resample, resampleWithWeights, resampleWithWeights, select, setClass, setClassIndex, setRelationName, sort, sort, stratify, stratStep, stringFreeStructure, stringWithoutHeader, sumOfWeights, swap, test, testCV, toString, toSummaryString, trainCV, trainCV, variance, variance |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private static final long serialVersionUID
public static final int LEARNING
public static final int PREDICTING
public static final int CLUSTERING
public static final int ASSOCIATION_RULE_MINING
public static final int WEIGHTING
private ExampleSet exampleSet
private FastExample2SparseTransform exampleTransform
private int[] mostFrequent
private int taskType
private Attribute labelAttribute
Constructor Detail |
---|
public WekaInstancesAdaptor(java.lang.String name, ExampleSet exampleSet, int taskType)
Method Detail |
---|
public java.util.Enumeration enumerateInstances()
enumerateInstances
in class weka.core.Instances
public weka.core.Instance instance(int i)
instance
in class weka.core.Instances
public int numInstances()
numInstances
in class weka.core.Instances
private weka.core.Instance toWekaInstance(Example example)
private static weka.core.FastVector getAttributeVector(ExampleSet exampleSet, int taskType)
private static weka.core.Attribute toWekaAttribute(Attribute attribute)
Attribute
to a Weka attribute.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |