MLeap Python API
Project description
Python integration package for MLeap
This package contains libraries to integrate MLeap with:
- PySpark
- Scikit-Learn
- TensorFlow (coming soon)
Installation
$ pip install mleap
PySpark Integration
MLeap's PySpark library provides serialization and deserialization functionality to/from Bundle.ML. There is 100% parity between MLeap's PySpark and Scala/Spark support and all of the supported transformers can be found here.
We have both a basic tutorial and an advance demo of serializing and de-serializing using PySpark, but in short you can continue to write ML Pipelines as you normally would and we provide the following interface for serialization/de-serialization:
# Define your pipeline
feature_pipeline = [string_indexer, feature_assembler]
featurePipeline = Pipeline(stages=feature_pipeline)
# Fit your pipeline
fittedPipeline = featurePipeline.fit(df)
# Serialize your pipeline
fittedPipeline.serializeToBundle("jar:file:/tmp/pyspark.example.zip", fittedPipeline.transform(df))
StringMap transformer
# dict of label mappings
labels = {'a': 1.0}
string_map_transformer = StringMap(
labels, 'key_col', 'value_col', handleInvalid='keep', defaultValue=0.0)
MathUnary transformer
Example usage:
# dict of label mappings
input_dataframe = pd.DataFrame([[0.1, 0.2, 0.3]], columns=['f1'])
sin_transformer = MathUnary(
operation=UnaryOperation.Sin,
inputCol="f1",
outputCol="sin(f1)",
)
sin_transformer.transform(input_dataframe)
Scikit-Learn Integration
MLeap's Scikit-Learn library provides serialization (de-serialization coming soon) functionality to Bundle.ML. There is already parity between the math that Scikit and Spark transformers execute, and MLeap takes advantage of that to provide a common serialization format for the two technologies.
A simple example is the StandardScaler transformer that normalizes the data given the mean and standard deviation. Both Spark and Scikit perform the standard normal transform on the data, and can both be serialized to the following format:
{
"op": "standard_scaler",
"attributes": {
"mean": {
"double": [0.2354223, 1.34502332],
"shape": {
"dimensions": [{
"size": 2,
"name": ""
}]
},
"type": "tensor"
},
"std": {
"double": [0.13842223, 0.78320249],
"shape": {
"dimensions": [{
"size": 2,
"name": ""
}]
},
"type": "tensor"
}
}
}
Scikit-Learn pipelines, just like Spark Pipelines, can be serialized to an MLeap Bundle and deployed to an MLeap runtime environment.
You can also take your scikit pipelines and deploy them to your Spark cluster, because MLeap can de-serialize them into a Spark ML Pipeline and execute them on data frames.
Documentation
Documentation can be found on our mleap docs page:
Contributions
Contributions are welcome! Make sure all python tests pass. You can run them from the top-level makefile:
make test_python
If you'd rather use the inner python/Makefile, remember to source SCALA_CLASS_PATH by running:
source scripts/scala_classpath_for_python.sh
cd python/ && make test
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mleap-0.25.1.tar.gz.
File metadata
- Download URL: mleap-0.25.1.tar.gz
- Upload date:
- Size: 39.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
645be7dfa42fbe60e5215b8a9a4e280cab6a161134f3d104b553805064ce4e72
|
|
| MD5 |
68a16bec6bfe42788bef206d85e6999e
|
|
| BLAKE2b-256 |
7b8a866f37b482c5b63e1a075a08d712deae6cc0bb0faa42cf093dee62040349
|
File details
Details for the file mleap-0.25.1-py3-none-any.whl.
File metadata
- Download URL: mleap-0.25.1-py3-none-any.whl
- Upload date:
- Size: 60.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d14a72f39bab6bfdaa44f3d586bc35efe6f80b54d837ec87ebe54d7ddb5e7b2
|
|
| MD5 |
9eea6312b38b41a44de5efbc203f2a59
|
|
| BLAKE2b-256 |
6930dd5054ca27ae723cf28c68dd5ef1dd72b8d69055239367ca14a5138f1f23
|