Skip to main content

PySpark2PMML

Python package for converting Apache Spark ML pipelines to PMML.

Features

This package is a thin PySpark wrapper for the JPMML-SparkML library.

News and Updates

The current version is 0.12.0 (31 August, 2026):

pip install pyspark2pmml==0.12.0

See the NEWS.md file.

Prerequisites

  • PySpark 3.0.X through 3.5.X, 4.0.X, 4.1.X or 4.2.X.
  • Python 3.8 or newer.
  • Java 8 or newer (as required by PySpark).

Installation

Install a release version from PyPI:

pip install pyspark2pmml

Alternatively, install the latest snapshot version from GitHub:

pip install --upgrade git+https://github.com/jpmml/pyspark2pmml.git

Configuration

One and the same PySpark2PMML version works across all supported PySpark release lines. Version variance is confined to the underlying JPMML-SparkML library, where each Apache Spark release line maps to a dedicated JPMML-SparkML release line.

PySpark2PMML must be paired with JPMML-SparkML based on the following compatibility matrix:

Apache Spark version JPMML-SparkML branch Latest JPMML-SparkML version
4.2.X master 3.4.0
4.1.X 3.3.X 3.3.5
4.0.X 3.2.X 3.2.12
3.5.X 3.1.X 3.1.13
3.4.X 3.0.X 3.0.13

Additionally, PySpark2PMML should be interoperable with now-legacy Apache Spark 3.0 through 3.3 release lines. Please see the JPMML-SparkML documentation for extended compatibility matrices.

Local setup

PySpark2PMML version 0.11.0 and newer bundle JPMML-SparkML JAR files for quick programmatic setup.

Use the pyspark2pmml.spark_jars() utility function to obtain a PySpark-version dependent classpath string, and pass it as spark.jars configuration entry when building a Spark session:

from pyspark.sql import SparkSession

import pyspark2pmml

spark = SparkSession.builder \
	.config("spark.jars", pyspark2pmml.spark_jars()) \
	.getOrCreate()

Cluster setup

Use the pyspark2pmml.spark_jars_packages() utility function to obtain a PySpark-version dependent Apache Maven package coordinates string:

import pyspark2pmml

print(pyspark2pmml.spark_jars_packages())

Pass this value to pyspark or spark-submit using the --packages command-line option:

$SPARK_HOME/bin/pyspark --packages $(python -c "import pyspark2pmml; print(pyspark2pmml.spark_jars_packages())")

Usage

PySpark2PMML is designed to operate on fitted pipeline models.

The PMML representation can capture pipelines of any size and complexity, ranging from isolated models to multi-model chains (with feature pre-processing and decision post-processing stages interspersed between the model stages).

The main requirement for a successful conversion is that every transformer class used in the pipeline is known to the underlying JPMML-SparkML library. Check the list of supported transformer classes, and develop and register converters for custom transformer classes as needed.

Fitting a Spark ML pipeline:

from pyspark.ml import Pipeline
from pyspark.ml.classification import DecisionTreeClassifier
from pyspark.ml.feature import RFormula

df = spark.read.csv("Iris.csv", header = True, inferSchema = True)

formula = RFormula(formula = "Species ~ .")
classifier = DecisionTreeClassifier()
pipeline = Pipeline(stages = [formula, classifier])
pipelineModel = pipeline.fit(df)

The PySpark2PMML API mirrors the JPMML-SparkML API:

  1. Construct a PMMLBuilder object based on the data schema and pipeline model. The data schema (column names and types) may be fetched from the training data frame, or constructed manually.
  2. Configure the PMML builder by calling putOption(stage: Transformer, key: str, value: Any) and verify(df: DataFrame) methods on it.
  3. Get the PMML XML text in memory by calling one of the buildString() or buildByteArray() methods, or dump it to a file by calling the buildFile(pmml_path: str) method.

Exporting the fitted Spark ML pipeline to a PMML file:

from pyspark2pmml import PMMLBuilder

pmmlBuilder = PMMLBuilder(df.schema, pipelineModel) \
	.verify(df.sample(0.05))

# Dump PMML to file in the driver's filesystem
pmml_path = pmmlBuilder.buildFile("DecisionTreeIris.pmml")
print(pmml_path)

# Keep PMML in memory
#pmml_str = pmmlBuilder.buildString()
#print(pmml_str)

The representation of individual Spark ML pipeline stages can be customized via conversion options:

from pyspark2pmml import PMMLBuilder

classifierModel = pipelineModel.stages[1]

pmmlBuilder = PMMLBuilder(df.schema, pipelineModel) \
	.putOption(classifierModel, "compact", False) \
	.putOption(classifierModel, "estimate_featureImportances", True) \
	.verify(df.sample(0.05))

pmmlBuilder.buildFile("DecisionTreeIris.pmml")

License

PySpark2PMML is licensed under the terms and conditions of the GNU Affero General Public License, Version 3.0.

If you would like to use PySpark2PMML in a proprietary software project, then it is possible to enter into a licensing agreement which makes PySpark2PMML available under the terms and conditions of the BSD 3-Clause License instead.

Additional information

PySpark2PMML is developed and maintained by Openscoring Ltd, Estonia.

Interested in using Java PMML API software in your company? Please contact info@openscoring.io

Release files for pyspark2pmml 0.12.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pyspark2pmml 0.12.0
File Size Uploaded
pyspark2pmml-0.12.0.tar.gz 7.4 MB Details

Built distribution (wheel)

Table of built distributions (wheels) for pyspark2pmml 0.12.0
File Interpreter ABI Platform
pyspark2pmml-0.12.0-py3-none-any.whl Python 3 none any Details

Total release size: 14.7 MB

Release files / pyspark2pmml-0.12.0.tar.gz

Download URL pyspark2pmml-0.12.0.tar.gz
Size 7.4 MB
Tags Source
SHA-256 checksum
How to use checksums
cd3e5063396f5f275bf9dd683329343773c9ced4f463500929aadeeeb09de890
BLAKE2b-256 checksum
How to use checksums
3ce880f7a760fb08db4971d296773e1f95f2cbc34e27548f491be83cb228383a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.21

Release files / pyspark2pmml-0.12.0-py3-none-any.whl

Download URL pyspark2pmml-0.12.0-py3-none-any.whl
Size 7.4 MB
Tags Python 3
SHA-256 checksum
How to use checksums
e34d509adbf3535600c6c2a04f10fe2612fe936c8909a7ecd4902560e6c2d86b
BLAKE2b-256 checksum
How to use checksums
be5b95ef8576a542b1eb1504d06fc7b27f94683d53dcb05cfeb1059cce4b1fa3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.21

Release history Release notifications | RSS feed

This release

0.12.0 This release

2 release files

0.11.1

2 release files

0.11.0

2 release files

0.10.0

2 release files

0.9.0

2 release files

0.8.2

2 release files

0.8.1

2 release files

0.8.0

2 release files

0.7.2

2 release files

0.7.1

2 release files

0.7.0

2 release files

0.6.1

2 release files

0.6.0

2 release files

0.5.1

1 release file

0.5.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page