PMML evaluator library for Python.
This package provides Python wrapper classes and functions for the JPMML-Evaluator library.
- Java Platform, Standard Edition 8 or newer.
- Python 2.7, 3.4 or newer.
Installing a release version from PyPI:
pip install jpmml_evaluator
Alternatively, installing the latest snapshot version from GitHub:
pip install --upgrade git+https://github.com/jpmml/jpmml-evaluator-python.git
Guiding principles:
- Java package prefix
org.jpmml.evaluator
becomes Python package prefixjpmml_evaluator
. - Java classes and interfaces become Python classes with the same name.
- Java methods become Python methods with the same name. In case of method overloading, the names of Python methods may have a disambiguating suffix (eg.
loadFile
,loadInputStream
) appended to them. - Java parameter types become Python parameter types.
For example, the Java method org.jpmml.evaluator.Evaluator#evaluate(Map<FieldName, ?> arguments)
has become a Python method jpmml_evaluator.Evaluator.evaluate(arguments: dict)
.
The communication with the JPMML-Evaluator library is managed by a jpmml_evaluator.JavaBackend
object.
Currently, it's possible to choose between three backend implementations:
JPype | PyJNIus | Py4J | |
---|---|---|---|
GitHub project page | jpype-project/jpype | kivy/pyjnius | bartdag/py4j |
Python package | jpype1 |
pyjnius |
py4j |
Implementation class | jpmml_evaluator \ .jpype.JPypeBackend |
jpmml_evaluator \ .pyjnius.PyJNIusBackend |
jpmml_evaluator \ .py4j.Py4JBackend |
Implementation class alias | "jpype" |
"pyjnius" |
"py4j" |
Type | Local JVM via JNI | Local JVM via JNI | Local or remote JVM via TCP/IP sockets |
Restartable | No | No | Yes |
Timing* for evaluate(X) |
8.1 -- 9.4 | 10.8 -- 11.9 | 37.3 -- 40.2 |
Timing* for evaluateAll(X) |
2.55 -- 2.95 | 2.77 -- 3.18 | 3.27 -- 3.62 |
[*] - Relative timings (smaller is better).
Building a verified model evaluator from a PMML file:
from jpmml_evaluator import make_evaluator
evaluator = make_evaluator("DecisionTreeIris.pmml") \
.verify()
Printing model schema:
inputFields = evaluator.getInputFields()
print("Input fields: " + str([inputField.getName() for inputField in inputFields]))
targetFields = evaluator.getTargetFields()
print("Target field(s): " + str([targetField.getName() for targetField in targetFields]))
outputFields = evaluator.getOutputFields()
print("Output fields: " + str([outputField.getName() for outputField in outputFields]))
Evaluating a single data record:
arguments = {
"Sepal_Length" : 5.1,
"Sepal_Width" : 3.5,
"Petal_Length" : 1.4,
"Petal_Width" : 0.2
}
results = evaluator.evaluate(arguments)
print(results)
Evaluating a collection of data records:
import pandas
arguments_df = pandas.read_csv("Iris.csv", sep = ",")
results_df = evaluator.evaluateAll(arguments_df)
print(results_df)
JPMML-Evaluator-Python is licensed under the terms and conditions of the GNU Affero General Public License, Version 3.0. For a quick summary of your rights ("Can") and obligations ("Cannot" and "Must") under AGPLv3, please refer to TLDRLegal.
If you would like to use JPMML-Evaluator-Python in a proprietary software project, then it is possible to enter into a licensing agreement which makes it available under the terms and conditions of the BSD 3-Clause License instead.
JPMML-Evaluator-Python is developed and maintained by Openscoring Ltd, Estonia.
Interested in using JPMML software in your software? Please contact info@openscoring.io