A program to recognize and reward our most engaged community members
//get cost matrix double[][] costMatrix = getParameterAsMatrix(PARAMETER_COST_MATRIX);
return new MetaCostModel(inputSet, models, costMatrix);
public MetaCostModel(ExampleSet exampleSet, Model[] models, double[][] costMatrix) { super(exampleSet); this.models = models; this.costMatrix = costMatrix; }