The Siemens Community Catalyst program was co-created with our community to acknowledge technology leaders who consistently contribute to the Siemens Community. Nominations are accepted on a rolling basis.
//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; }