public class ExactIntAssigner extends Object implements HardAssigner<int[],float[],IntFloatPair>
HardAssigner
that assigns points to the closest
cluster based on the distance to the centroid.Modifier and Type | Field and Description |
---|---|
protected IntNearestNeighboursExact |
nn |
Constructor and Description |
---|
ExactIntAssigner(CentroidsProvider<int[]> provider)
Construct the assigner using the given cluster data.
|
ExactIntAssigner(CentroidsProvider<int[]> provider,
IntFVComparator comparison)
Construct the assigner using the given cluster data and
distance function.
|
ExactIntAssigner(int[][] data,
IntFVComparator comparison)
Construct the assigner using the given cluster data and
distance function.
|
Modifier and Type | Method and Description |
---|---|
int |
assign(int[] data)
Assign a single point to a cluster.
|
int[] |
assign(int[][] data)
Assign data to a cluster.
|
IntFloatPair |
assignDistance(int[] data)
Assign a single point to a cluster.
|
void |
assignDistance(int[][] data,
int[] indices,
float[] distances)
Assign data to clusters.
|
IntNearestNeighboursExact |
getNN()
Get the underlying nearest-neighbour implementation.
|
int |
numDimensions()
Get the number of dimensions of the input vectors.
|
int |
size()
The number of centroids or unique ids that can be generated.
|
protected IntNearestNeighboursExact nn
public ExactIntAssigner(CentroidsProvider<int[]> provider)
provider
- the cluster data providerpublic ExactIntAssigner(CentroidsProvider<int[]> provider, IntFVComparator comparison)
provider
- the cluster data providercomparison
- the distance functionpublic ExactIntAssigner(int[][] data, IntFVComparator comparison)
data
- the cluster datacomparison
- the distance functionpublic int[] assign(int[][] data)
HardAssigner
assign
in interface HardAssigner<int[],float[],IntFloatPair>
data
- the data.public int assign(int[] data)
HardAssigner
assign
in interface HardAssigner<int[],float[],IntFloatPair>
data
- datum to assign.public void assignDistance(int[][] data, int[] indices, float[] distances)
HardAssigner
assignDistance
in interface HardAssigner<int[],float[],IntFloatPair>
data
- the data.indices
- the cluster index for each data point.distances
- the distance to the closest cluster for each data point.public IntFloatPair assignDistance(int[] data)
HardAssigner
assignDistance
in interface HardAssigner<int[],float[],IntFloatPair>
data
- point to assign.public int size()
HardAssigner
size
in interface HardAssigner<int[],float[],IntFloatPair>
public int numDimensions()
Assigner
numDimensions
in interface Assigner<int[]>
public IntNearestNeighboursExact getNN()