|
|||||||||
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
edu.udo.cs.yale.example.SplittedExampleSet
public class SplittedExampleSet
An example set that can be split into subsets by using a Partition
.
Field Summary | |
---|---|
static int |
LINEAR_SAMPLING
Indicates a non-shuffled sampling for partition building. |
private Partition |
partition
The partition. |
static java.lang.String[] |
SAMPLING_NAMES
Indicates a non-shuffled sampling for partition building. |
static int |
SHUFFLED_SAMPLING
Indicates a shuffled sampling for partition building. |
static int |
STRATIFIED_SAMPLING
Indicates a stratified shuffled sampling for partition building. |
Fields inherited from class edu.udo.cs.yale.example.ExampleSetAdapter |
---|
delegate |
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 | |
---|---|
SplittedExampleSet(ExampleSet exampleSet,
double[] splitRatios,
int samplingType,
int seed)
Creates an example set that is splitted into n subsets with the given sampling type. |
|
SplittedExampleSet(ExampleSet exampleSet,
double splitRatio,
int samplingType,
int seed)
Creates an example set that is splitted into two subsets using the given sampling type. |
|
SplittedExampleSet(ExampleSet exampleSet,
int numberOfSubsets,
int samplingType,
int seed)
Creates an example set that is splitted into numberOfSubsets parts with the given sampling type. |
|
SplittedExampleSet(ExampleSet exampleSet,
Partition partition)
Constructs a SplittedExampleSet with the given partition. |
|
SplittedExampleSet(SplittedExampleSet exampleSet)
Clone constructor. |
Method Summary | |
---|---|
void |
clearSelection()
Clears the current selection |
private static PartitionBuilder |
createPartitionBuilder(ExampleSet exampleSet,
int samplingType,
int seed)
Creates the partition builder for the given sampling type. |
int |
getActualParentIndex(int index)
Returns the index of the example in the parent example set. |
Example |
getExample(int index)
Searches i-th example in the currently selected partition. |
int |
getNumberOfSubsets()
Returns the number of subsets. |
void |
invertSelection()
Inverts the current selection |
java.util.Iterator<Example> |
iterator()
Returns an example reader that splits all examples that are not selected. |
void |
selectAllSubsetsBut(int index)
Selects all but one subset. |
void |
selectSingleSubset(int index)
Selects exactly one subset. |
int |
size()
Returns the number of examples in this example set. |
static SplittedExampleSet |
splitByAttribute(ExampleSet exampleSet,
Attribute attribute)
Works only for nominal and integer attributes. |
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.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 |
---|
public static final java.lang.String[] SAMPLING_NAMES
public static final int LINEAR_SAMPLING
public static final int SHUFFLED_SAMPLING
public static final int STRATIFIED_SAMPLING
private Partition partition
Constructor Detail |
---|
public SplittedExampleSet(SplittedExampleSet exampleSet)
public SplittedExampleSet(ExampleSet exampleSet, Partition partition)
public SplittedExampleSet(ExampleSet exampleSet, double splitRatio, int samplingType, int seed)
public SplittedExampleSet(ExampleSet exampleSet, double[] splitRatios, int samplingType, int seed)
public SplittedExampleSet(ExampleSet exampleSet, int numberOfSubsets, int samplingType, int seed)
Method Detail |
---|
private static PartitionBuilder createPartitionBuilder(ExampleSet exampleSet, int samplingType, int seed)
public void selectSingleSubset(int index)
public void selectAllSubsetsBut(int index)
public void invertSelection()
public void clearSelection()
public int getNumberOfSubsets()
public java.util.Iterator<Example> iterator()
iterator
in interface java.lang.Iterable<Example>
iterator
in class ExampleSetAdapter
public int size()
ExampleSet
size
in interface ExampleSet
size
in class ExampleSetAdapter
public Example getExample(int index)
getExample
in interface ExampleSet
getExample
in class ExampleSetAdapter
public int getActualParentIndex(int index)
public static SplittedExampleSet splitByAttribute(ExampleSet exampleSet, Attribute attribute)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |