Streamline your MLOps workflows on GCP with ZenML and Vertex AI Pipelines
Enhance your machine learning operations by leveraging the power of Vertex AI Pipelines orchestration through ZenML. This integration enables you to run production-ready, scalable ML pipelines on Google Cloud Platform, taking advantage of the fully managed serverless infrastructure and intuitive UI for tracking pipeline runs.
zenml integration install gcp
zenml stack set ...
from zenml.integrations.gcp.flavors.vertex_orchestrator_flavor import VertexOrchestratorSettings
# Choose an accelerator to run on
vertex_settings = VertexOrchestratorSettings(
node_selector_constraint=(
"cloud.google.com/gke-accelerator",
"NVIDIA_TESLA_P4",
)
)
@pipeline(
settings={
"orchestrator.vertex": vertex_settings,
}
)
def vertex_pipeline():
ingest_data()
train_model()
evaluate_model()
# Run the pipeline
vertex_pipeline()
Expand your ML pipelines with more than 50 ZenML Integrations