|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.example.Partition
public class Partition
Implements a partition. A partition is used to divide an example set into
different parts of arbitrary sizes without actually make a copy of the data.
Partitions are used by SplittedExampleSet
s. Partition numbering
starts at 0.
Field Summary | |
---|---|
private boolean[] |
mask
Mask for the selected partitions. |
private int[] |
partitionSizes
Size of the individual partitions. |
private int[] |
splitPartition
Maps every example to its partition index. |
private int[] |
tableIndexMap
Maps every example index to the true index of the data row in the example table. |
Constructor Summary | |
---|---|
|
Partition(double[] ratio,
int size,
PartitionBuilder builder)
Creates a new partition of a given size consisting of ratio.length sets. |
|
Partition(int[] splitPartition,
int numberOfPartitions)
Creates a partition from the given one. |
|
Partition(int noPartitions,
int size,
PartitionBuilder builder)
Creates a new partition of a given size consisting of noPartitions equally sized sets. |
private |
Partition(Partition p)
Clone constructor. |
Method Summary | |
---|---|
void |
clearSelection()
Clears the selection, i.e. deselects all subsets. |
java.lang.Object |
clone()
|
void |
deselectSubset(int i)
Marks the given subset as deselected. |
int |
getNumberOfSubsets()
Returns the number of subsets. |
int |
getSelectionSize()
Returns the number of selected elements. |
int |
getTotalSize()
Returns the total number of examples. |
private void |
init(double[] ratio,
int size,
PartitionBuilder builder)
Creates a partition from the given ratios. |
private void |
init(int[] elements,
int noOfPartitions)
Private initialization method used by constructors. |
void |
invertSelection()
|
boolean |
isSelected(int index)
Returns true iff the example with the given index is selected according to the current selection mask. |
int |
mapIndex(int index)
Returns the actual example table index of the i-th example of the currently selected subset. |
private void |
recalculateTableIndices()
Recalculates the example table indices of the currently selected examples. |
void |
selectSubset(int i)
Marks the given subset as selected. |
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private boolean[] mask
private int[] partitionSizes
private int[] splitPartition
private int[] tableIndexMap
Constructor Detail |
---|
public Partition(double[] ratio, int size, PartitionBuilder builder)
public Partition(int noPartitions, int size, PartitionBuilder builder)
public Partition(int[] splitPartition, int numberOfPartitions)
private Partition(Partition p)
Method Detail |
---|
private void init(double[] ratio, int size, PartitionBuilder builder)
private void init(int[] elements, int noOfPartitions)
public void clearSelection()
public void invertSelection()
public void selectSubset(int i)
public void deselectSubset(int i)
public int getNumberOfSubsets()
public int getSelectionSize()
public int getTotalSize()
public boolean isSelected(int index)
private void recalculateTableIndices()
public int mapIndex(int index)
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.Object clone()
clone
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |