Java Evaluator API for Predictive Model Markup Language (PMML).
JPMML-Evaluator is de facto the reference implementation of the PMML specification versions 3.0, 3.1, 3.2, 4.0, 4.1 and 4.2 for the Java platform:
- Pre-processing of active fields according to the [DataDictionary] (http://www.dmg.org/v4-2-1/DataDictionary.html) and [MiningSchema] (http://www.dmg.org/v4-2-1/MiningSchema.html) elements:
- Complete data type system.
- Complete operational type system.
- Treatment of outlier, missing and/or invalid values.
- Model evaluation:
- [Association rules] (http://www.dmg.org/v4-2-1/AssociationRules.html)
- [Cluster model] (http://www.dmg.org/v4-2-1/ClusteringModel.html)
- [General regression] (http://www.dmg.org/v4-2-1/GeneralRegression.html)
- [Naive Bayes] (http://www.dmg.org/v4-2-1/NaiveBayes.html)
- [k-Nearest neighbors] (http://www.dmg.org/v4-2-1/KNN.html)
- [Neural network] (http://www.dmg.org/v4-2-1/NeuralNetwork.html)
- [Regression] (http://www.dmg.org/v4-2-1/Regression.html)
- [Rule set] (http://www.dmg.org/v4-2-1/RuleSet.html)
- [Scorecard] (http://www.dmg.org/v4-2-1/Scorecard.html)
- [Support Vector Machine] (http://www.dmg.org/v4-2-1/SupportVectorMachine.html)
- [Tree model] (http://www.dmg.org/v4-2-1/TreeModel.html)
- [Ensemble model] (http://www.dmg.org/v4-2-1/MultipleModels.html)
- Post-processing of target fields according to the [Targets] (http://www.dmg.org/v4-2-1/Targets.html) element:
- Rescaling and/or casting regression results.
- Replacing a missing regression result with the default value.
- Replacing a missing classification result with the map of prior probabilities.
- Calculation of auxiliary output fields according to the [Output] (http://www.dmg.org/v4-2-1/Output.html) element:
- Over 20 different result feature types.
- Model verification according to the [ModelVerification] (http://www.dmg.org/v4-2-1/ModelVerification.html) element.
For more information please see the [features.md] (https://github.com/jpmml/jpmml-evaluator/blob/master/features.md) file.
JPMML-Evaluator is interoperable with most popular statistics and data mining software:
- [R] (http://www.r-project.org/) and [Rattle] (http://rattle.togaware.com/):
- [JPMML-R] (https://github.com/jpmml/jpmml-r) library and [
r2pmml
] (https://github.com/jpmml/r2pmml) package - [
pmml
] (https://cran.r-project.org/web/packages/pmml/) package - [
pmmlTransformations
] (https://cran.r-project.org/web/packages/pmmlTransformations/) package
- [JPMML-R] (https://github.com/jpmml/jpmml-r) library and [
- [Python] (http://www.python.org/) and [Scikit-Learn] (http://scikit-learn.org/):
- [JPMML-SkLearn] (https://github.com/jpmml/jpmml-sklearn) library and [
sklearn2pmml
] (https://github.com/jpmml/sklearn2pmml) package
- [JPMML-SkLearn] (https://github.com/jpmml/jpmml-sklearn) library and [
- [XGBoost] (https://github.com/dmlc/xgboost):
- [JPMML-XGBoost] (https://github.com/jpmml/jpmml-xgboost) library
- [Apache Spark] (http://spark.apache.org/)
- [KNIME] (http://www.knime.com/)
- [RapidMiner] (http://rapidminer.com/products/rapidminer-studio/)
- [SAS] (http://www.sas.com/en_us/software/analytics/enterprise-miner.html)
- [SPSS] (http://www-01.ibm.com/software/analytics/spss/)
JPMML-Evaluator is fast and memory efficient. It can deliver one million scorings per second already on a desktop computer.
- Java 1.7 or newer.
JPMML-Evaluator library JAR files (together with accompanying Java source and Javadocs JAR files) are released via [Maven Central Repository] (http://repo1.maven.org/maven2/org/jpmml/).
The current version is 1.2.13 (20 March, 2016).
<dependency>
<groupId>org.jpmml</groupId>
<artifactId>pmml-evaluator</artifactId>
<version>1.2.13</version>
</dependency>
JPMML-Evaluator depends on the [JPMML-Model] (https://github.com/jpmml/jpmml-model) library for PMML class model.
Loading a PMML schema version 3.X or 4.X document into an org.dmg.pmml.PMML
instance:
PMML pmml;
try(InputStream is = ...){
Source transformedSource = ImportFilter.apply(new InputSource(is));
pmml = JAXBUtil.unmarshalPMML(transformedSource);
}
If the model type is known, then it is possible to instantiate the corresponding subclass of org.jpmml.evaluator.ModelEvaluator
directly:
PMML pmml = ...;
ModelEvaluator<TreeModel> modelEvaluator = new TreeModelEvaluator(pmml);
Otherwise, if the model type is unknown, then the model evaluator instantiation work should be delegated to an instance of class org.jpmml.evaluator.ModelEvaluatorFactory
:
PMML pmml = ...;
ModelEvaluatorFactory modelEvaluatorFactory = ModelEvaluatorFactory.newInstance();
ModelEvaluator<?> modelEvaluator = modelEvaluatorFactory.newModelManager(pmml);
Model evaluator classes follow functional programming principles and are completely thread safe.
Model evaluator instances are fairly lightweight, which makes them cheap to create and destroy.
Nevertheless, long-running applications should maintain a one-to-one mapping between PMML
and ModelEvaluator
instances for better performance.
It is advisable for application code to work against the org.jpmml.evaluator.Evaluator
interface:
Evaluator evaluator = (Evaluator)modelEvaluator;
The model evaluator can be queried for the list of active (ie. independent), target (ie. primary dependent) and output (ie. secondary dependent) field names. Field names can be resolved to field definitions, which provide data type, operational type, value domain etc. information.
Querying and parsing active fields:
List<FieldName> activeFields = evaluator.getActiveFields();
for(FieldName activeField : activeFields){
MiningField miningField = evaluator.getMiningField(activeField);
DataField dataField = evaluator.getDataField(activeField);
DataType dataType = dataField.getDataType();
OpType opType = dataField.getOpType();
switch(opType){
case CONTINUOUS:
RangeSet<Double> validArgumentRanges = FieldValueUtil.getValidRanges(dataField);
break;
case CATEGORICAL:
case ORDINAL:
List<Value> validArgumentValues = FieldValueUtil.getValidValues(dataField);
break;
default:
break;
}
}
Querying and parsing target fields:
List<FieldName> targetFields = EvaluatorUtil.getTargetFields(evaluator);
for(FieldName targetField : targetFields){
MiningField miningField = evaluator.getMiningField(targetField);
DataField dataField = evaluator.getDataField(targetField);
Target target = evaluator.getTarget(targetField);
DataType dataType = dataField.getDataType();
OpType opType = dataField.getOpType();
// The MiningField element overrides the DataField element
if(miningField != null && miningField.getOpType() != null){
opType = miningField.getOpType();
} // End if
// The Target element overrides the MiningField element
if(target != null && target.getOpType() != null){
opType = target.getOpType();
}
switch(opType){
case CONTINUOUS:
break;
case CATEGORICAL:
case ORDINAL:
List<Value> validResultValues = FieldValueUtil.getValidValues(dataField);
break;
default:
break;
}
}
The method EvaluatorUtil#getTargetFields(Evaluator)
is a "safe" wrapper for the Evaluator#getTargetFields()
method.
Querying and parsing output fields:
List<FieldName> outputFields = EvaluatorUtil.getOutputFields(evaluator);
for(FieldName outputField : outputFields){
OutputField output = EvaluatorUtil.getOutputField(evaluator, outputField);
DataType dataType = output.getDataType();
OpType opType = output.getOpType();
}
Methods EvaluatorUtil#getOutputFields(Evaluator)
and EvaluatorUtil#getOutputField(Evaluator, FieldName)
are "safe" wrappers for methods Evaluator#getOutputFields()
and Evaluator#getOutputField(FieldName)
, respectively.
The PMML scoring operation must be invoked with valid arguments. Otherwise, the behaviour of the model evaluator class is unspecified.
Preparing a data record:
Map<FieldName, FieldValue> arguments = new LinkedHashMap<>();
List<FieldName> activeFields = evaluator.getActiveFields();
for(FieldName activeField : activeFields){
// The raw (ie. user-supplied) value could be any Java primitive value
Object rawValue = ...;
// The raw value is passed through: 1) outlier treatment, 2) missing value treatment, 3) invalid value treatment and 4) type conversion
FieldValue activeValue = evaluator.prepare(activeField, rawValue);
arguments.put(activeField, activeValue);
}
Evaluating the data record:
Map<FieldName, ?> results = evaluator.evaluate(arguments);
Typically, a model has exactly one target field:
FieldName targetName = evaluator.getTargetField();
Object targetValue = results.get(targetName);
The target value is either a Java primitive value (as a wrapper object) or an instance of org.jpmml.evaluator.Computable
:
if(targetValue instanceof Computable){
Computable computable = (Computable)targetValue;
Object primitiveValue = computable.getResult();
}
The target value may implement interfaces that descend from interface org.jpmml.evaluator.ResultFeature
:
// Test for "entityId" result feature
if(targetValue instanceof HasEntityId){
HasEntityId hasEntityId = (HasEntityId)targetValue;
HasEntityRegistry<?> hasEntityRegistry = (HasEntityRegistry<?>)evaluator;
BiMap<String, ? extends Entity> entities = hasEntityRegistry.getEntityRegistry();
Entity winner = entities.get(hasEntityId.getEntityId());
// Test for "probability" result feature
if(targetValue instanceof HasProbability){
HasProbability hasProbability = (HasProbability)targetValue;
Double winnerProbability = hasProbability.getProbability(winner.getId());
}
}
Module pmml-evaluator-example
exemplifies the use of the JPMML-Evaluator library.
This module can be built using [Apache Maven] (http://maven.apache.org/):
mvn clean install
The resulting uber-JAR file target/example-1.2-SNAPSHOT.jar
contains the following command-line applications:
org.jpmml.evaluator.EvaluationExample
[(source)] (https://github.com/jpmml/jpmml-evaluator/blob/master/pmml-evaluator-example/src/main/java/org/jpmml/evaluator/EvaluationExample.java). Evaluates a PMML model using data records from a TSV or CSV file.org.jpmml.evaluator.EnhancementExample
. Enhances a PMML model with a ModelVerification element using data records from a TSV or CSV file.
Evaluating model model.pmml
by loading input data records from input.tsv
and storing output data records to output.tsv
:
java -cp target/example-1.2-SNAPSHOT.jar org.jpmml.evaluator.EvaluationExample --model model.pmml --input input.tsv --output output.tsv
Getting help:
java -cp target/example-1.2-SNAPSHOT.jar org.jpmml.evaluator.EvaluationExample --help
The [Openscoring.io blog] (http://openscoring.io/blog/) contains fully worked out examples about using JPMML-Model and JPMML-Evaluator libraries.
Recommended reading:
- [Preparing arguments for evaluation] (http://openscoring.io/blog/2014/05/15/jpmml_evaluator_api_prepare_evaluate/)
- [Testing PMML Applications] (http://openscoring.io/blog/2014/05/12/testing_pmml_applications/)
Please join the [JPMML mailing list] (https://groups.google.com/forum/#!forum/jpmml) for technical discussion.
JPMML-Evaluator is licensed under the [GNU Affero General Public License (AGPL) version 3.0] (http://www.gnu.org/licenses/agpl-3.0.html). Other licenses are available on request.
Please contact [[email protected]] (mailto:[email protected])