Skip to main content

A python library to ease MLOps for Dataproc customers

Project description

Google Cloud logo

Dataproc ML

PyPI version License

Public Preview Disclaimer

Interfaces and functionality are subject to change. It is not recommended for production-critical applications without thorough testing and understanding of the potential risks.

Dataproc ML is a Python library that simplifies distributed ML inference on Google Cloud Dataproc. It provides high-level handlers to run PyTorch and Vertex AI Gemini models at scale using Apache Spark, without the complexity of manual model distribution and batch processing.

Installation

You can install the library using pip:

pip install dataproc-ml

Usage Examples

Here are a couple of examples demonstrating how to use the handlers for distributed inference on a Spark DataFrame.

Generative AI (Gemini) Model Inference

Note: Using the GenAiModelHandler involves making API calls to Vertex AI, which will incur costs. Please review the Vertex AI Generative AI pricing.

Use Google's Gemini models to perform generative tasks on your data. This example uses a prompt template to ask for the capital of countries listed in a Spark DataFrame.

from pyspark.sql import SparkSession
from google.cloud.dataproc_ml.inference import GenAiModelHandler

spark = SparkSession.builder.getOrCreate()

# Create a sample DataFrame
data = [("USA",), ("France",), ("Japan",)]
input_df = spark.createDataFrame(data, ["country"])

# The handler will automatically use the 'country' column
result_df = (
    GenAiModelHandler()
    .prompt("What is the capital of {country}?")
    .output_col("capital_city")
    .transform(input_df)
)

result_df.show()
# +-------+----------------+
# |country|capital_city    |
# +-------+----------------+
# |USA    |Washington, D.C.|
# |France |Paris           |
# |Japan  |Tokyo           |
# +-------+----------------+

PyTorch Model Inference

Run distributed inference using a pre-trained PyTorch model stored in Google Cloud Storage. This example assumes you have a Spark DataFrame input_df with a column named features containing image tensors or other numerical data.

from pyspark.sql import SparkSession
from google.cloud.dataproc_ml.inference import PyTorchModelHandler

spark = SparkSession.builder.getOrCreate()

data = [([0.1, 0.2, 0.3],), ([0.4, 0.5, 0.6],), ([0.7, 0.8, 0.9],)]
input_df = spark.createDataFrame(data, ["features"])

# Path to your saved PyTorch model in GCS
model_gcs_path = "gs://your-bucket/path/to/model.pt"

# Apply the model for inference
result_df = (
    PyTorchModelHandler()
    .model_path(model_gcs_path)
    .input_cols("features")
    .transform(input_df)
)

result_df.show()
# +------------------+--------------------+
# |          features|         predictions|
# +------------------+--------------------+
# |[0.1, 0.2, 0.3]   |[0.543, 0.457]      |
# |[0.4, 0.5, 0.6]   |[0.621, 0.379]      |
# |[0.7, 0.8, 0.9]   |[0.789, 0.211]      |
# +------------------+--------------------+

Documentation

For more detailed information on the available handlers and their configurations, please refer to our official documentation.

Contributing

Contributions are welcome! Please see contributing.md for details on how to set up your development environment, run linters/tests, etc.

License

This project is licensed under the Apache 2.0 License. See the LICENSE file for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dataproc_ml-0.2.0.tar.gz (19.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dataproc_ml-0.2.0-py3-none-any.whl (24.9 kB view details)

Uploaded Python 3

File details

Details for the file dataproc_ml-0.2.0.tar.gz.

File metadata

  • Download URL: dataproc_ml-0.2.0.tar.gz
  • Upload date:
  • Size: 19.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0

File hashes

Hashes for dataproc_ml-0.2.0.tar.gz
Algorithm Hash digest
SHA256 2fc7c074436091498d388ca908d1e662980f2b005b3a6e67ad85d33ed94b31ce
MD5 45e5947035553550bec608330f6bf543
BLAKE2b-256 29c8f4dd30713ea56b5256e766c43a6c80210943990cd3a3212bdc0e388ff946

See more details on using hashes here.

File details

Details for the file dataproc_ml-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: dataproc_ml-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 24.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0

File hashes

Hashes for dataproc_ml-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1b1e993c835de9be959b3c7622700e90943d77a40ebda06881bf0520aeba9145
MD5 ddd7a9a66e59351449010ec75e92250b
BLAKE2b-256 3c517dc52b52df52f891e799eee8fe6d4705c63f92b20d342c45471276d8c9c9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page