Module datarush.analytics
Interface AggregationFunctionEvaluator
-
public interface AggregationFunctionEvaluator
Interface for evaluators ofAggregationFunction
s.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
evaluate(double[] cluster, double[] data)
Evaluates theAggregationFunction
of thisAggregationFunctionEvaluator
.
-
-
-
Method Detail
-
evaluate
double evaluate(double[] cluster, double[] data)
Evaluates theAggregationFunction
of thisAggregationFunctionEvaluator
.- Parameters:
cluster
- the cluster seeds vectordata
- the data points vector- Returns:
- the distance/similarity of the two vectors as defined by the function this instance evaluates
-
-