SlideShare a Scribd company logo
Vertex AI
Pipelines for your MLOps workflows
GDG DevFest, November 2021
Márton Kodok
Google Developer Expert at REEA.net
● Among the Top3 romanians on Stackoverflow 195k reputation
● Google Developer Expert on Cloud technologies
● Crafting Web/Mobile backends at REEA.net
● BigQuery + Redis database engine expert
Slideshare: martonkodok
Articles: martonkodok.medium.com
Twitter: @martonkodok
StackOverflow: pentium10
GitHub: pentium10
Vertex AI: Pipelines for your MLOps workflows @martonkodok
About me
1. What is MLOps?
2. What is Vertex AI?
3. Build, train and deploy ML solutions
4. Using Pipelines throughout your ML workflow
5. Adapting to changes of data
6. Conclusions
Agenda
Vertex AI: Pipelines for your MLOps workflows @martonkodok
@martonkodok
What is
MLOps?
Part #1
“ DevOpsprinciples to MLsystems
Vertex AI: Pipelines for your MLOps workflows @martonkodok
What is MLOps?
Elements for ML systems
Adapted from Hidden Technical Debt in Machine Learning Systems. @martonkodok
“Continuousdelivery and automationpipelines
for machinelearning systems.
Vertex AI: Pipelines for your MLOps workflows @martonkodok
What is MLOps?
MLOps level 0: Manual process
MLOps level 1: ML pipeline automation
MLOps level 2: CI/CD pipeline automation
Levelsofautomation defines maturity of theMLprocess
@martonkodok
MLOps level 0: Manual process - Process for building and deploying ML models is entirely manual.
Infrequent release iterations. No CI, No CD. Disconnection between ML and operations.
MLOps level 1: ML pipeline automation - Continuous training of the model by automating the ML pipeline;
achieve continuous delivery of model prediction service. New pipelines mostly based on new data.
MLOps level 2: CI/CD pipeline automation -iteratively try out new ML algorithms and new modeling where
the experiment steps are orchestrated. The output of this stage is the source code of the ML pipeline steps
that are then pushed to a source repository. Build source. Run test. Output is pipeline.
Levelsofautomation defines maturity of theMLprocess
@martonkodok
MLOps level 2: CI/CDpipelineautomation
@martonkodok
Levelsofautomation defines maturity of theMLprocess
@martonkodok
What is
Vertex AI?
Part #2
“VertexAI is a managed ML platform for practitioners
to accelerate experiments and deploy AI models.
Vertex AI: Pipelines for your MLOps workflows @martonkodok
What’s included in VertexAI?
Vertex AI: Pipelines for your MLOps workflows @martonkodok
Data Labeling
AutoML
DL Environment (DL VM + DL Container)
Prediction
Feature Store Training
Experiments
Data Readiness
Feature
Engineering
Training/
HP-Tuning
Model
Monitoring
Model serving
Understanding/
Tuning
Edge
Model
Management
Notebooks
Pipelines (Orchestration)
Explainable AI
Hybrid AI
Model
Monitoring
Metadata
Vision Translation Tables
Language
Video
AI Accelerators
Models
Datasets
Custom Models
Containers
Python
Endpoints
Vizier Optimization
VertexAI is a unified MLOps platform
Vertex AI: Pipelines for your MLOps workflows @martonkodok
Operational
Model
Programming
Model
No Infra Management Managed Security Pay only for usage
Model-as-a-service
oriented
Streamlined model
development
Open SDKs,
integrates with ML frameworks
Using Pipelines
throughout your
ML workflow
Part #3
VertexAI: Pipelines - Orchestrate your ML workflow
Vertex AI: Pipelines for your MLOps workflows @martonkodok
Data Labeling
AutoML
DL Environment (DL VM + DL Container)
Prediction
Feature Store Training
Experiments
Data Readiness
Feature
Engineering
Training/
HP-Tuning
Model
Monitoring
Model serving
Understanding/
Tuning
Edge
Model
Management
Notebooks
Pipelines (Orchestration)
Explainable AI
Hybrid AI
Model
Monitoring
Metadata
Vision Translation Tables
Language
Video
AI Accelerators
Models
Datasets
Custom Models
Containers
Python
Endpoints
Vizier Optimization
“ Why are MLpipelines useful?
Vertex AI: Pipelines for your MLOps workflows @martonkodok
1. Orchestrate ML workflow steps as a process.
We no longer handle all data gathering, model training, tuning, evaluation, deployment as a monolith.
2. Adopt MLOps for production models. We need a repeatable, verifiable, and automatic process for
making any change to a production model.
3. Develop steps independently -as you scale out, enables you to share your ML workflow with others on
your team, so they can run it, and contribute code. Enablesyoutotracktheinputandoutputfromeach
stepinareproducibleway.
Why are ML pipelines useful?
@martonkodok
Vertex AI: Pipelines
Vertex AI: Pipelines for your MLOps workflows
Source: Piero Esposito
https://github.com/piEsposito/vertex-ai-tutorials
Using Pipelines throughout your ML workflow
Vertex AI: Pipelines for your MLOps workflows @martonkodok
Gather data Train model
Deploy
model
Pipeline Components
Vertex AI: Pipelines for your MLOps workflows
pipeline_components_automl_images.ipynb
github.com/GoogleCloudPlatform/vertex-ai-samples
Using Pipelines throughout your ML workflow
Vertex AI: Pipelines for your MLOps workflows @martonkodok
Gather data Train model
Evaluate
model
Scalably
deploy
model
Pipeline SDK: Condition
Vertex AI: Pipelines for your MLOps workflows
automl_tabular_classification_beans.ipynb
github.com/GoogleCloudPlatform/vertex-ai-samples
1. Use of the Google Cloud Pipeline Components, which support easy access to Vertex AI services
2. Custom Components - function that compiles to a task ‘factory’ function that can be used by pipelines
3. No more Kubeflow Pipelines that must be deployed on a Kubernetes Cluster.
4. Sharing component specifications - the YAML format allows the component to be put under version
control and shared with others, or be used by other pipelines by calling the load_from_url function.
5. Leveraging Pipeline step caching to develop and debug
6. Vertex AI Metadata service + Artifacts Lineage tracking - inverse of pipeline DAG
Developer friendly components
@martonkodok
Recap
Vertex AI: Pipelines for your MLOps workflows @martonkodok
Data Labeling
AutoML
DL Environment (DL VM + DL Container)
Prediction
Feature Store Training
Experiments
Data Readiness
Feature
Engineering
Training/
HP-Tuning
Model
Monitoring
Model serving
Understanding/
Tuning
Edge
Model
Management
Notebooks
Pipelines (Orchestration)
Explainable AI
Hybrid AI
Model
Monitoring
Metadata
Vision Translation Tables
Language
Video
AI Accelerators
Models
Datasets
Custom Models
Containers
Python
Endpoints
Vizier Optimization
Part #4
Adapting to
changes of data
Automatic CI / CD Perspective with GCP Services
Vertex AI: Pipelines for your MLOps workflows @martonkodok
Eventarc
• Detect changes on data
• React to events from Cloud services
• Handle events on Cloud Workflows,
Cloud Functions, Cloud Run
• Reuse pipeline spec.json from GCS
• Trigger Vertex AI pipeline
• Detect changes in codebase
• Build pipeline
• Pipeline spec.json to Cloud Storage
• Image to Cloud Registry
• Trigger Vertex AI pipeline
Cloud Build
Cloud Scheduler
• Poll for changes of any data
• Launch based on schedule
• In tandem with Cloud Workflows
• Trigger Vertex AI pipeline
Conclusion
Vertex AI: Pipelines for your MLOps workflows @martonkodok
1. Build with the groundbreaking ML tools that power Google
2. Approachable from the non-ML developer perspective (AutoML, managed models, training)
3. Ease the life of a data scientist/ML (has feature store, managed datasets, endpoints, notebooks)
4. End-to-end integration for data and AI with build pipelines that outperform and solve complex ML tasks
5. GitOps-style continuous delivery with Cloud Build
6. Explainable AI and TensorBoard to visualize and track ML experiments
Vertex AI: Enhanced developer experience
Vertex AI: Pipelines for your MLOps workflows @martonkodok
Thank you. Q&A.
Slides available on:
slideshare.net/martonkodok
Reea.net - Integrated web solutions driven by creativity
to deliver projects.

More Related Content

PPTX
Google Vertex AI
PPTX
MLops on Vertex AI Presentation (AI/ML).pptx
PDF
Vertex AI - Unified ML Platform for the entire AI workflow on Google Cloud
PDF
Intro to Vertex AI, unified MLOps platform for Data Scientists & ML Engineers
PDF
MLops workshop AWS
PDF
Ml ops on AWS
PDF
End to end Machine Learning using Kubeflow - Build, Train, Deploy and Manage
PDF
Kubeflow
Google Vertex AI
MLops on Vertex AI Presentation (AI/ML).pptx
Vertex AI - Unified ML Platform for the entire AI workflow on Google Cloud
Intro to Vertex AI, unified MLOps platform for Data Scientists & ML Engineers
MLops workshop AWS
Ml ops on AWS
End to end Machine Learning using Kubeflow - Build, Train, Deploy and Manage
Kubeflow

What's hot (20)

PDF
MLOps with Kubeflow
PDF
Using MLOps to Bring ML to Production/The Promise of MLOps
PDF
MLOps Using MLflow
PDF
What is MLOps
PDF
Seamless MLOps with Seldon and MLflow
PPTX
From Data Science to MLOps
PDF
PPTX
MLOps - The Assembly Line of ML
PDF
Databricks Overview for MLOps
PDF
Ml ops past_present_future
PDF
Introduction to MLflow
PDF
ML-Ops how to bring your data science to production
PDF
Apply MLOps at Scale
PPTX
MLOps with Azure DevOps
PDF
MLflow with Databricks
PPTX
Pythonsevilla2019 - Introduction to MLFlow
PDF
mlflow: Accelerating the End-to-End ML lifecycle
PPTX
MLOps and Data Quality: Deploying Reliable ML Models in Production
PDF
MLOps by Sasha Rosenbaum
PDF
Ml ops intro session
MLOps with Kubeflow
Using MLOps to Bring ML to Production/The Promise of MLOps
MLOps Using MLflow
What is MLOps
Seamless MLOps with Seldon and MLflow
From Data Science to MLOps
MLOps - The Assembly Line of ML
Databricks Overview for MLOps
Ml ops past_present_future
Introduction to MLflow
ML-Ops how to bring your data science to production
Apply MLOps at Scale
MLOps with Azure DevOps
MLflow with Databricks
Pythonsevilla2019 - Introduction to MLFlow
mlflow: Accelerating the End-to-End ML lifecycle
MLOps and Data Quality: Deploying Reliable ML Models in Production
MLOps by Sasha Rosenbaum
Ml ops intro session
Ad

Similar to Vertex AI: Pipelines for your MLOps workflows (20)

PDF
DevBCN Vertex AI - Pipelines for your MLOps workflows
PPTX
Creating Your First ML Model with Google Cloud AutoML
PDF
Best Practices for Integrating MLOps in Your AI_ML Pipeline
PDF
MLOps pipelines using MLFlow - From training to production
PDF
Gen Apps on Google Cloud PaLM2 and Codey APIs in Action
PDF
How to Build an MLOps Pipeline - SoluLab
PPTX
Production ML Systems and Computer Vision with Google Cloud
PPTX
GCP Deployment- Vertex AI
PDF
Streamlining AI Deployment with MLOps Pipelines – Powered by DevSecCops.pdf
PDF
Vertex AI by Raju Dawadi GDG Kathmandu Build With AI Nepal Pre Event 2024
PDF
Training and deploying ML models with Google Cloud Platform
PPTX
03_aiops-1.pptx
PDF
AISF19 - Building Scalable, Kubernetes-Native ML/AI Pipelines with TFX, KubeF...
PPT
Deploying ML Models using MLOps Pipelines.ppt
PDF
Machine learning at scale with Google Cloud Platform
PDF
ML Model Deployment and Scoring on the Edge with Automatic ML & DF
PPTX
Nasscom ml ops webinar
PDF
Track2 02. machine intelligence at google scale google, kaz sato, staff devel...
PDF
Democratize ai with google cloud
PDF
How To Build Efficient ML Pipelines From The Startup Perspective (GTC Silicon...
DevBCN Vertex AI - Pipelines for your MLOps workflows
Creating Your First ML Model with Google Cloud AutoML
Best Practices for Integrating MLOps in Your AI_ML Pipeline
MLOps pipelines using MLFlow - From training to production
Gen Apps on Google Cloud PaLM2 and Codey APIs in Action
How to Build an MLOps Pipeline - SoluLab
Production ML Systems and Computer Vision with Google Cloud
GCP Deployment- Vertex AI
Streamlining AI Deployment with MLOps Pipelines – Powered by DevSecCops.pdf
Vertex AI by Raju Dawadi GDG Kathmandu Build With AI Nepal Pre Event 2024
Training and deploying ML models with Google Cloud Platform
03_aiops-1.pptx
AISF19 - Building Scalable, Kubernetes-Native ML/AI Pipelines with TFX, KubeF...
Deploying ML Models using MLOps Pipelines.ppt
Machine learning at scale with Google Cloud Platform
ML Model Deployment and Scoring on the Edge with Automatic ML & DF
Nasscom ml ops webinar
Track2 02. machine intelligence at google scale google, kaz sato, staff devel...
Democratize ai with google cloud
How To Build Efficient ML Pipelines From The Startup Perspective (GTC Silicon...
Ad

More from Márton Kodok (20)

PDF
AI Agents with Gemini 2.0 - Beyond the Chatbot
PDF
Gemini 2.0 and Vertex AI for Innovation Workshop
PDF
Function Calling with the Vertex AI Gemini API
PDF
Vector search and multimodal embeddings in BigQuery
PDF
BigQuery Remote Functions for Dynamic Mapping of E-mobility Charging Networks
PDF
Build applications with generative AI on Google Cloud
PDF
Discover BigQuery ML, build your own CREATE MODEL statement
PDF
Cloud Run - the rise of serverless and containerization
PDF
BigQuery best practices and recommendations to reduce costs with BI Engine, S...
PDF
Cloud Workflows What's new in serverless orchestration and automation
PDF
Serverless orchestration and automation with Cloud Workflows
PDF
Serverless orchestration and automation with Cloud Workflows
PDF
Serverless orchestration and automation with Cloud Workflows
PDF
BigdataConference Europe - BigQuery ML
PDF
DevFest Romania 2020 Keynote: Bringing the Cloud to you.
PDF
BigQuery ML - Machine learning at scale using SQL
PDF
Applying BigQuery ML on e-commerce data analytics
PDF
Supercharge your data analytics with BigQuery
PDF
Vibe Koli 2019 - Utazás az egyetem padjaitól a Google Developer Expertig
PDF
BigQuery ML - Machine learning at scale using SQL
AI Agents with Gemini 2.0 - Beyond the Chatbot
Gemini 2.0 and Vertex AI for Innovation Workshop
Function Calling with the Vertex AI Gemini API
Vector search and multimodal embeddings in BigQuery
BigQuery Remote Functions for Dynamic Mapping of E-mobility Charging Networks
Build applications with generative AI on Google Cloud
Discover BigQuery ML, build your own CREATE MODEL statement
Cloud Run - the rise of serverless and containerization
BigQuery best practices and recommendations to reduce costs with BI Engine, S...
Cloud Workflows What's new in serverless orchestration and automation
Serverless orchestration and automation with Cloud Workflows
Serverless orchestration and automation with Cloud Workflows
Serverless orchestration and automation with Cloud Workflows
BigdataConference Europe - BigQuery ML
DevFest Romania 2020 Keynote: Bringing the Cloud to you.
BigQuery ML - Machine learning at scale using SQL
Applying BigQuery ML on e-commerce data analytics
Supercharge your data analytics with BigQuery
Vibe Koli 2019 - Utazás az egyetem padjaitól a Google Developer Expertig
BigQuery ML - Machine learning at scale using SQL

Recently uploaded (20)

PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PPTX
L1 - Introduction to python Backend.pptx
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PPTX
Online Work Permit System for Fast Permit Processing
PDF
medical staffing services at VALiNTRY
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PPTX
Operating system designcfffgfgggggggvggggggggg
PPTX
ManageIQ - Sprint 268 Review - Slide Deck
PDF
top salesforce developer skills in 2025.pdf
PDF
System and Network Administraation Chapter 3
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PPTX
ISO 45001 Occupational Health and Safety Management System
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PPT
Introduction Database Management System for Course Database
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
2025 Textile ERP Trends: SAP, Odoo & Oracle
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
L1 - Introduction to python Backend.pptx
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Wondershare Filmora 15 Crack With Activation Key [2025
Online Work Permit System for Fast Permit Processing
medical staffing services at VALiNTRY
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Odoo Companies in India – Driving Business Transformation.pdf
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Operating system designcfffgfgggggggvggggggggg
ManageIQ - Sprint 268 Review - Slide Deck
top salesforce developer skills in 2025.pdf
System and Network Administraation Chapter 3
Adobe Illustrator 28.6 Crack My Vision of Vector Design
ISO 45001 Occupational Health and Safety Management System
Design an Analysis of Algorithms II-SECS-1021-03
Introduction Database Management System for Course Database
Which alternative to Crystal Reports is best for small or large businesses.pdf
How to Migrate SBCGlobal Email to Yahoo Easily

Vertex AI: Pipelines for your MLOps workflows

  • 1. Vertex AI Pipelines for your MLOps workflows GDG DevFest, November 2021 Márton Kodok Google Developer Expert at REEA.net
  • 2. ● Among the Top3 romanians on Stackoverflow 195k reputation ● Google Developer Expert on Cloud technologies ● Crafting Web/Mobile backends at REEA.net ● BigQuery + Redis database engine expert Slideshare: martonkodok Articles: martonkodok.medium.com Twitter: @martonkodok StackOverflow: pentium10 GitHub: pentium10 Vertex AI: Pipelines for your MLOps workflows @martonkodok About me
  • 3. 1. What is MLOps? 2. What is Vertex AI? 3. Build, train and deploy ML solutions 4. Using Pipelines throughout your ML workflow 5. Adapting to changes of data 6. Conclusions Agenda Vertex AI: Pipelines for your MLOps workflows @martonkodok
  • 5. “ DevOpsprinciples to MLsystems Vertex AI: Pipelines for your MLOps workflows @martonkodok What is MLOps?
  • 6. Elements for ML systems Adapted from Hidden Technical Debt in Machine Learning Systems. @martonkodok
  • 7. “Continuousdelivery and automationpipelines for machinelearning systems. Vertex AI: Pipelines for your MLOps workflows @martonkodok What is MLOps?
  • 8. MLOps level 0: Manual process MLOps level 1: ML pipeline automation MLOps level 2: CI/CD pipeline automation Levelsofautomation defines maturity of theMLprocess @martonkodok
  • 9. MLOps level 0: Manual process - Process for building and deploying ML models is entirely manual. Infrequent release iterations. No CI, No CD. Disconnection between ML and operations. MLOps level 1: ML pipeline automation - Continuous training of the model by automating the ML pipeline; achieve continuous delivery of model prediction service. New pipelines mostly based on new data. MLOps level 2: CI/CD pipeline automation -iteratively try out new ML algorithms and new modeling where the experiment steps are orchestrated. The output of this stage is the source code of the ML pipeline steps that are then pushed to a source repository. Build source. Run test. Output is pipeline. Levelsofautomation defines maturity of theMLprocess @martonkodok
  • 10. MLOps level 2: CI/CDpipelineautomation @martonkodok
  • 13. “VertexAI is a managed ML platform for practitioners to accelerate experiments and deploy AI models. Vertex AI: Pipelines for your MLOps workflows @martonkodok
  • 14. What’s included in VertexAI? Vertex AI: Pipelines for your MLOps workflows @martonkodok Data Labeling AutoML DL Environment (DL VM + DL Container) Prediction Feature Store Training Experiments Data Readiness Feature Engineering Training/ HP-Tuning Model Monitoring Model serving Understanding/ Tuning Edge Model Management Notebooks Pipelines (Orchestration) Explainable AI Hybrid AI Model Monitoring Metadata Vision Translation Tables Language Video AI Accelerators Models Datasets Custom Models Containers Python Endpoints Vizier Optimization
  • 15. VertexAI is a unified MLOps platform Vertex AI: Pipelines for your MLOps workflows @martonkodok Operational Model Programming Model No Infra Management Managed Security Pay only for usage Model-as-a-service oriented Streamlined model development Open SDKs, integrates with ML frameworks
  • 17. VertexAI: Pipelines - Orchestrate your ML workflow Vertex AI: Pipelines for your MLOps workflows @martonkodok Data Labeling AutoML DL Environment (DL VM + DL Container) Prediction Feature Store Training Experiments Data Readiness Feature Engineering Training/ HP-Tuning Model Monitoring Model serving Understanding/ Tuning Edge Model Management Notebooks Pipelines (Orchestration) Explainable AI Hybrid AI Model Monitoring Metadata Vision Translation Tables Language Video AI Accelerators Models Datasets Custom Models Containers Python Endpoints Vizier Optimization
  • 18. “ Why are MLpipelines useful? Vertex AI: Pipelines for your MLOps workflows @martonkodok
  • 19. 1. Orchestrate ML workflow steps as a process. We no longer handle all data gathering, model training, tuning, evaluation, deployment as a monolith. 2. Adopt MLOps for production models. We need a repeatable, verifiable, and automatic process for making any change to a production model. 3. Develop steps independently -as you scale out, enables you to share your ML workflow with others on your team, so they can run it, and contribute code. Enablesyoutotracktheinputandoutputfromeach stepinareproducibleway. Why are ML pipelines useful? @martonkodok
  • 20. Vertex AI: Pipelines Vertex AI: Pipelines for your MLOps workflows Source: Piero Esposito https://github.com/piEsposito/vertex-ai-tutorials
  • 21. Using Pipelines throughout your ML workflow Vertex AI: Pipelines for your MLOps workflows @martonkodok Gather data Train model Deploy model
  • 22. Pipeline Components Vertex AI: Pipelines for your MLOps workflows pipeline_components_automl_images.ipynb github.com/GoogleCloudPlatform/vertex-ai-samples
  • 23. Using Pipelines throughout your ML workflow Vertex AI: Pipelines for your MLOps workflows @martonkodok Gather data Train model Evaluate model Scalably deploy model
  • 24. Pipeline SDK: Condition Vertex AI: Pipelines for your MLOps workflows automl_tabular_classification_beans.ipynb github.com/GoogleCloudPlatform/vertex-ai-samples
  • 25. 1. Use of the Google Cloud Pipeline Components, which support easy access to Vertex AI services 2. Custom Components - function that compiles to a task ‘factory’ function that can be used by pipelines 3. No more Kubeflow Pipelines that must be deployed on a Kubernetes Cluster. 4. Sharing component specifications - the YAML format allows the component to be put under version control and shared with others, or be used by other pipelines by calling the load_from_url function. 5. Leveraging Pipeline step caching to develop and debug 6. Vertex AI Metadata service + Artifacts Lineage tracking - inverse of pipeline DAG Developer friendly components @martonkodok
  • 26. Recap Vertex AI: Pipelines for your MLOps workflows @martonkodok Data Labeling AutoML DL Environment (DL VM + DL Container) Prediction Feature Store Training Experiments Data Readiness Feature Engineering Training/ HP-Tuning Model Monitoring Model serving Understanding/ Tuning Edge Model Management Notebooks Pipelines (Orchestration) Explainable AI Hybrid AI Model Monitoring Metadata Vision Translation Tables Language Video AI Accelerators Models Datasets Custom Models Containers Python Endpoints Vizier Optimization
  • 28. Automatic CI / CD Perspective with GCP Services Vertex AI: Pipelines for your MLOps workflows @martonkodok Eventarc • Detect changes on data • React to events from Cloud services • Handle events on Cloud Workflows, Cloud Functions, Cloud Run • Reuse pipeline spec.json from GCS • Trigger Vertex AI pipeline • Detect changes in codebase • Build pipeline • Pipeline spec.json to Cloud Storage • Image to Cloud Registry • Trigger Vertex AI pipeline Cloud Build Cloud Scheduler • Poll for changes of any data • Launch based on schedule • In tandem with Cloud Workflows • Trigger Vertex AI pipeline
  • 29. Conclusion Vertex AI: Pipelines for your MLOps workflows @martonkodok
  • 30. 1. Build with the groundbreaking ML tools that power Google 2. Approachable from the non-ML developer perspective (AutoML, managed models, training) 3. Ease the life of a data scientist/ML (has feature store, managed datasets, endpoints, notebooks) 4. End-to-end integration for data and AI with build pipelines that outperform and solve complex ML tasks 5. GitOps-style continuous delivery with Cloud Build 6. Explainable AI and TensorBoard to visualize and track ML experiments Vertex AI: Enhanced developer experience Vertex AI: Pipelines for your MLOps workflows @martonkodok
  • 31. Thank you. Q&A. Slides available on: slideshare.net/martonkodok Reea.net - Integrated web solutions driven by creativity to deliver projects.