Skip to main content

A python library to ease MLOps for Dataproc customers

Project description

Google Cloud logo

Dataproc ML

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.1.0.tar.gz (18.9 kB view details)

Uploaded Source

File details

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

File metadata

  • Download URL: dataproc_ml-0.1.0.tar.gz
  • Upload date:
  • Size: 18.9 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.1.0.tar.gz
Algorithm Hash digest
SHA256 b1f7651ae5aa65be22990defb1987ea97185b554588db67a6188626ba6603b5d
MD5 cfbdb1c1008311bd8525bbd6a97d89d9
BLAKE2b-256 78149e69d792a5c90c73ce15cc480255abed00ce6caf4616d0345e7513d887c7

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