org.jpmml.evaluator.BatchUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pmml-evaluator-test Show documentation
Show all versions of pmml-evaluator-test Show documentation
JPMML class model evaluator batch testing harness
/*
* Copyright (c) 2013 Villu Ruusmann
*
* This file is part of JPMML-Evaluator
*
* JPMML-Evaluator is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* JPMML-Evaluator is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with JPMML-Evaluator. If not, see .
*/
package org.jpmml.evaluator;
import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import com.google.common.base.Equivalence;
import com.google.common.base.Function;
import com.google.common.collect.MapDifference;
import com.google.common.collect.Maps;
import org.dmg.pmml.FieldName;
public class BatchUtil {
private BatchUtil(){
}
static
public List evaluate(Batch batch, Set ignoredFields, final double precision, final double zeroThreshold) throws Exception {
Evaluator evaluator = batch.getEvaluator();
List extends Map> input = batch.getInput();
List extends Map> output = batch.getOutput();
if(evaluator instanceof HasGroupFields){
HasGroupFields hasGroupFields = (HasGroupFields)evaluator;
input = EvaluatorUtil.groupRows(hasGroupFields, input);
}
Equivalence
© 2015 - 2025 Weber Informatics LLC | Privacy Policy