SlideShare a Scribd company logo
1 of 52
MLOps: your way from
nonsense to valuable effect
A p p r o a c h e s , c a s e s , t o o l s
Speaker about
Head of the Data Science architecture at
“First Ukrainian International Bank”
Mykola Mykytenko
Experience:
• 10+ years in software development
• Construction of high-load BI solution
• Construction of architecture for Data Science applications and
processes
30
років на ринку
243
1 825
млн. грн податків
сплатив банк в
2020 році
топ-5
в щорічному рейтингу
«50 провідних банків
України»
4-й
банк в Україні за
об'ємом чистого
прибутку за 2020 рік
8,5
1,6
відділення в
Україні
тисячі
співробітників
мільйонів
роздрібних клієнтів
Найкомфортніших
банків, лідер в номінації
«Зручність» за версією
Forbes Україна
топ-3
ПУМБ - НАЙБІЛЬШИЙ БАНК З УКРАЇНСЬКИМ
ПРИВАТНИМ КАПІТАЛОМ
What is
?
87% of data science projects
never make it into production
V e n t u r e B e a t r e p o r t , T r a n s f o r m 2 0 1 9
What is
valuable effect
for business?
No ML model in production,
No Happy Business!!!
Models can only add value to an organization
when insights are regularly available to end user.
No Happy Client!!!
Why does
this happen?
In which phase
ML project stall?
Only fifth of ML projects are not
delayed
46% of ML project ready for production
deployment but stall for some reason
Alegion, Dimensional Research’s “What data scientists tell us about AI model training today”
Develop and deploy model
is not a one-man story
S e e i n s c r e e n s i n N o v e m b e r 2 0 2 1
Data Scientist
who deploy to production by
himself
In which phase
ML project stall?
Only fifth of ML projects are not
delayed
46% of ML project ready for production
deployment but stall for some reason
O’Reilly Media, “What Is MLOps? “ by Mark Treveil, Lynn Heidman
Wide range of
ML system
elements
• To develop and operate complex
systems like these you need add
additional principles, such as CI,
CD and CT.
Google, Hidden Technical Debt in Machine Learning Systems
ML project long
dev lifecycle
• A lot of stages
• A lot of different tasks
• A lot of knowledge areas
• A lot of a lot
Setting Up Machine Learning Projects. Full Stack Deep Learning
How long it takes
to deploy an ML
model into
production?
Algorithmia’s “2020 State of Enterprise ML”
ML model deployment timeline
What can help
deal with it?
• MLOps is the set of practices at the
intersection of Machine Learning,
DevOps and Machine Learning
• MLOps is a set of policies, practices
and governance for managing
Machine Learning solutions
throughout the lifecycle
Benefits of
MLOps
• Accelerate time-to-value
• Improve confidence in model and
quality of production
• Optimize productivity of team,
lower development time to 80%
• Faster response times
• Improve compliance with
regulatory requirements
• Manage infrastructure
Fast development
Fast response times
Quality of production models
Compliance with
regulatory governance
Key points of
MLOps?
• Organizational
• Governance
• Teams
• Communications
• Resource
• People
• Technology
• Approaches
• Frameworks
How does it
work?
• Focus on improve communication
• Manage and remove duplicate
routines
• Focus on collaboration
• Build platform and centralize
framework
• Build automated proceeds
• Implements approaches and tools
“What is MLOps” from nealanalytics blog
How do I get started with MLOps?
MLOps level 0
• Every step is manual, require manual execution
• Require manual transition
• Disconnection between DS and engineers lead
training-serving skew
• Infrequent release iterations: new model
deployed a couple times per year
• CI is ignored because few changes, testing is part
of the notebooks
• CD is ignore aren’t frequent model version
deployments
• Deployment refers to the prediction service, not
entire ML system
• Lack of performance monitoring, do no track log,
predictions and actions Prediction
service
Model
serving
Model
registry
Trained
model
Manual model
development
Manual data
processing
Offline data ML Ops
experimentation/development/test
staging/preproduction/production
Data scientists
deploying efforts
It takes a quarter of data scientist time
doing development.
What makes Data Scientist numb with horror?
Modeling Deploy
Magician of Mathematics and Algorithms
Offline (Batch)
Online (Web-service)
Real-time processing (Embedded)
The first step in determining how to deploy a model
Is understanding how end users should interact with
that model’s prediction
How do we see ML applications differently
D a t a S c i e n t i s t C u s t o m e r
Offline (Batch)
• Run on a bulk data
• Run on schedule
• Not needed real-time
• Flexibly manage resource
• Rerun the job of case of error
• Well educated model
Orchestrator DWH or Data Lake
Batch job pipeline
Trigger Get data
Save data and log
DWH or Data Lake
Save predict
Call model
ML model
Offline (Batch)
• Use: Collection return delay score
• Predict all batch for 5-10 minutes (from
end-to-end)
• Data always ready for business
Airflow
DWH
Trigger
Get data
Data Lake
Save predict,
data and log
Call model
Model store
VM Host
Python app Load model
Run
ML model
Online (sync API)
• Run on current case
• 24/7 execution ready
• Application append on result
• User enable to take action
• Impossible manage resource
• Not possible to fix production error
• Latency important
ML model on cluster
Load balancer
Call
Client Client Client
Call
Wait response!
Data Lake
Call log
Predict
log
Performance log
Online (sync API)
• Use: Customer fraud detection
• Hundred milliseconds for answer
• Dynamic cluster management and
balancing
• High risk of governance
Kubernetes cluster
Nginx
Call
App App Actions app
Call
Wait response!
Data Lake
Call log
Performance log
Predict and
container log
Fraud or not?
Data Science на страже закона: как мы автоматизировали финансовый мониторинг в ПУМБ
Call
Online (async API)
• Run on current case
• 24/7 execution ready
• Application do not append on result
• Result is not critical
• Possible manage resource
• Not possible to fix production error
• Latency not so important
ML model on cluster
Load balancer
Async call
Client Client Client
Async call
Async Framework
Real-time
• Run on current case
• 24/7 execution ready
• High-level load
• Application append on result
• Impossible manage resource
• Not possible to fix production error
• Latency critical
Clients
Application engine
Real-time processing app
Embedded ML module
Frameworks: jep, jpy, Jython, jni
Real-time
• Use: Transaction fraud
• Tens milliseconds for answer
• Thousands of transaction per second
Processing center
Application engine
Processing business workflow
Embedded ML module
Transactions
MLOps level 1
• Achieve goal - model in production
• Automatically build, test, package
and deploy
• Unit testing serving scripts
• Testing integration between
components
• Testing that model do not produce
bad or NaN
• Testing that components produce
artifacts
• Monitor model
Prediction service
Model registry
Trained model
Manual model
development
Manual data
processing
MLOps
experimentation/development/test
staging/preproduction/production
CI
CD: Pipeline
deployment
CD: Model serving Automated training
pipeline
Performance monitoring
CI/CD
• All done automated, Data Scientist and
Business get notifications with result
• Pipeline and its components are built,
tested, and packaged when new code is
committed or pushed, or merged
• Train model on huge data if required
• Spent time only on model analyze
• Test it well
Source code
Push or merge
event
Get model
Model registry
Model serving
Integration test
Prediction service Monitoring Metadata store
Metadata store
Get metadata
Testing
• Testing is crucial to ensure that
frequent changes aren’t sacrificing
quality
• Software testing is well studied
“The ML Test Score: A Rubric for ML Production Readiness and Technical Debt Reduction”
ML model testing
• Intersection of Machine learning and
testing less well explored in the
literature
• ML system testing more complex
• ML system depends strongly on data and
models (cannot be strongly specified)
• ML models needs debug ability, rollbacks
and monitoring
• 28 actionable tests at Google
“The ML Test Score: A Rubric for ML Production Readiness and Technical Debt Reduction”
Testing pyramid
• Contain Data, ML, UI, Integrated,
Performances and Governance
testing
• More types of testing will make
your Test Pyramid rethink
“Continuous Delivery for Machine Learning”, Danilo Sato, Arif Wider, Cristof Windheuser
Monitoring
• Based on data
• Based on ML model
• Based on system
• At least contain 2-3 metrics for all three
categories
• Operation metrics should be monitored real-
time level or at least daily
• Stability and performance metrics at larger
time frame depending on domain (weekly, etc.)
Abzooba, “MLOps: Model Monitoring 101” by Pronojit Saha and Dr. Arnab Bose
Monitoring
influence
• Model performance implemented
by tracking performance
• Trigger based on performance
metric decrease call automated
model retraining and making
decision
INNOQ, “MLOps Principles” by Dr. Larysa Visengeriyeva, Anja Kammer, Isabel Bar and other
MLOps level 2
• Support interactive execution for
quick experimentation and long-
running jobs
• Provide data connectors to wide data
source range
• Provide efficient data transformation
and feature engineering
• Support scalable batch and stream
data
• Support feature and metadata store
• Support Data Engineer and Data
Scientist tasks management
Prediction service
Model registry
Trained model
Manual model
development
Data
analysis
experimentation/development/test
staging/preproduction/production
CI
CD: Pipeline
deployment
CD: Model serving
Performance monitoring
Feature store Batch fetching
Data processing
platform
• Keep all data changes
• Available to repeat experiments
• Data connected to model
• Track journey of data
• Visualize of complete data flow
• Implement low risk changes
• Track errors in data processes
• Roll out and roll back steps
• Data discovery
Pachyderm, “Pachyderm overview”
Data Versioning Data Pipelines Data Lineage
Two loops
• qqqq
“Completing the Machine Learning Loop”, Jimmy Whitaker
• Dealing with two moving pieces: Code and
Data
• Code Loop is crucial for ML model stability and
efficiency
• Data Loop is essential to improving model
quality and relevance
MLOps level 3
• Automated ML pipelines lets Data
Scientists rapidly explore new
ideas around feature engineering,
model architecture and hyper
parameters
• Data Scientists can implements
and deploy to target environments
ideas automatically
Model registry
Trained model
Automated model
development
Data
analysis
experimentation/development/test
staging/preproduction/production
CI
CD: Pipeline
deployment
Performance monitoring
Batch fetching
Trigger
Automated CI/CD
ML pipeline
• End-to-end automated pipeline
consists 6-8 steps
• The data analysis step is still a
manual process for Data Scientist
before new pipeline iteration
• The model analysis as step is also
a manual process
Google, “”MLOps: Continuous delivery and automation pipelines in machine learning”
Continuous Delivery
for Machine
Learning (CD4ML)
Software engineering approach in
which cross-functional team
produces machine learning
applications based on code, data and
models in small and safe increments
that can be reproduced and reliably
released at any time, in short
adaptation cycles.
“Continuous Delivery for Machine Learning”, Danilo Sato, Arif Wider, Cristof Windheuser
End-to-end Continuous Delivery process for ML
Governance
responsible roles
• Regulatory complience
• Reproducibility and traceability
• Audit and documentation
• Pre-production verification
• Transparency and expandability
• Quality and compliance
O’Reilly Media, “What Is MLOps? “ by Mark Treveil, Lynn Heidman
M L O p s P l a t f o r m
CPUs GPUs
HDFS
Storage
Compute
C o l l a b o r a t e
M o n i t o r i n g
On-Premises
Data Preparation Build Train Deploy
Businesses Domain Experts Data Engineers Data Scientists ML Architects
Thank you for attention!
W W W . P U M B . U A
Mykola Mykytenko
N i ko l ay. M i k i t e n ko @ f u i b . c o m
i n fo @ f u i b . c o m
Links
1. Перший Український Міжнародний Банк
2. VentureBeat report, Transform 2019
3. Alegion, Dimensional Research’s Survey “What data scientists tell us about AI model training today”
4. O’Reilly Media, “What Is MLOps? “ by Mark Treveil, Lynn Heidman
5. Google, Hidden Technical Debt in Machine Learning Systems
6. Setting up Machine Learning Projects, Full Stack Deep Learning
7. Algorithmia’s “2020 State of Enterprise ML”
8. “What is MLOps” from nealanalytics blog
9. Data Science на страже закона: как мы автоматизировали финансовый мониторинг в ПУМБ
10.The ML Test Score: A Rubric for ML Production Readiness and Technical Debt Reduction
11.“Continuous Delivery for Machine Learning”, Danilo Sato, Arif Wider, Cristof Windheuser
12.Abzooba, “MLOps: Model Monitoring 101” by Pronojit Saha and Dr. Arnab Bose
Links
13. INNOQ, “MLOps Principles” by Dr. Larysa Visengeriyeva, Anja Kammer, Isabel Bar and other
14. Pachyderm, “Pachyderm overview”
15. Completing the Machine Learning Loop”, Jimmy Whitaker
16. Google, “”MLOps: Continuous delivery and automation pipelines in machine learning”

More Related Content

What's hot

Aleksey Shebanov: Workshop with a client: hints & tips
Aleksey Shebanov: Workshop with a client: hints & tipsAleksey Shebanov: Workshop with a client: hints & tips
Aleksey Shebanov: Workshop with a client: hints & tipsLviv Startup Club
 
Agile Scrum Presentation-Detailed
Agile Scrum Presentation-DetailedAgile Scrum Presentation-Detailed
Agile Scrum Presentation-DetailedPrashaanth T R
 
DevOps, Performance Optimization and the Green Life with Magento
DevOps, Performance Optimization and the Green Life with MagentoDevOps, Performance Optimization and the Green Life with Magento
DevOps, Performance Optimization and the Green Life with MagentoLuis Tineo
 
Myths of Product Development
Myths of Product DevelopmentMyths of Product Development
Myths of Product DevelopmentShoaib Shaukat
 
Scrum and the agile development process
Scrum and the agile development processScrum and the agile development process
Scrum and the agile development processjhericks
 
Inclusive Architecture - Introducing the PAMstack - [Refactr.tech]
Inclusive Architecture - Introducing the PAMstack - [Refactr.tech] Inclusive Architecture - Introducing the PAMstack - [Refactr.tech]
Inclusive Architecture - Introducing the PAMstack - [Refactr.tech] Tracy Lee
 
Introduction to Agile-Scrum
Introduction to Agile-ScrumIntroduction to Agile-Scrum
Introduction to Agile-ScrumPraveen Nair
 
An Introduction To Agile Development
An Introduction To Agile DevelopmentAn Introduction To Agile Development
An Introduction To Agile Developmentelliando dias
 
Agile Delivery Powerpoint Presentation Slides
Agile Delivery Powerpoint Presentation SlidesAgile Delivery Powerpoint Presentation Slides
Agile Delivery Powerpoint Presentation SlidesSlideTeam
 
Crystal Methodology COS 730
Crystal Methodology COS 730Crystal Methodology COS 730
Crystal Methodology COS 730bassuday
 
Trends in Agile Testing by Lisa Crispin
Trends in Agile Testing by Lisa CrispinTrends in Agile Testing by Lisa Crispin
Trends in Agile Testing by Lisa CrispinDirecti Group
 
What is agile model?Working of agile model
What is agile model?Working of agile modelWhat is agile model?Working of agile model
What is agile model?Working of agile modelzoomers
 
Agile Simplified
Agile SimplifiedAgile Simplified
Agile SimplifiedWalaa Atef
 
Agile development, software engineering
Agile development, software engineeringAgile development, software engineering
Agile development, software engineeringRupesh Vaishnav
 

What's hot (20)

What is Scrum?
What is Scrum?What is Scrum?
What is Scrum?
 
Aleksey Shebanov: Workshop with a client: hints & tips
Aleksey Shebanov: Workshop with a client: hints & tipsAleksey Shebanov: Workshop with a client: hints & tips
Aleksey Shebanov: Workshop with a client: hints & tips
 
Agile Scrum Presentation-Detailed
Agile Scrum Presentation-DetailedAgile Scrum Presentation-Detailed
Agile Scrum Presentation-Detailed
 
Zen of Scrum
Zen of ScrumZen of Scrum
Zen of Scrum
 
DevOps, Performance Optimization and the Green Life with Magento
DevOps, Performance Optimization and the Green Life with MagentoDevOps, Performance Optimization and the Green Life with Magento
DevOps, Performance Optimization and the Green Life with Magento
 
Agile Fundamentals
Agile FundamentalsAgile Fundamentals
Agile Fundamentals
 
Scrum in 5 slides
Scrum in 5 slidesScrum in 5 slides
Scrum in 5 slides
 
Myths of Product Development
Myths of Product DevelopmentMyths of Product Development
Myths of Product Development
 
Scrum and the agile development process
Scrum and the agile development processScrum and the agile development process
Scrum and the agile development process
 
Inclusive Architecture - Introducing the PAMstack - [Refactr.tech]
Inclusive Architecture - Introducing the PAMstack - [Refactr.tech] Inclusive Architecture - Introducing the PAMstack - [Refactr.tech]
Inclusive Architecture - Introducing the PAMstack - [Refactr.tech]
 
Introduction to Agile-Scrum
Introduction to Agile-ScrumIntroduction to Agile-Scrum
Introduction to Agile-Scrum
 
What is agile model
What is agile modelWhat is agile model
What is agile model
 
An Introduction To Agile Development
An Introduction To Agile DevelopmentAn Introduction To Agile Development
An Introduction To Agile Development
 
Agile Delivery Powerpoint Presentation Slides
Agile Delivery Powerpoint Presentation SlidesAgile Delivery Powerpoint Presentation Slides
Agile Delivery Powerpoint Presentation Slides
 
Crystal Methodology COS 730
Crystal Methodology COS 730Crystal Methodology COS 730
Crystal Methodology COS 730
 
Trends in Agile Testing by Lisa Crispin
Trends in Agile Testing by Lisa CrispinTrends in Agile Testing by Lisa Crispin
Trends in Agile Testing by Lisa Crispin
 
Agile Methodology
Agile MethodologyAgile Methodology
Agile Methodology
 
What is agile model?Working of agile model
What is agile model?Working of agile modelWhat is agile model?Working of agile model
What is agile model?Working of agile model
 
Agile Simplified
Agile SimplifiedAgile Simplified
Agile Simplified
 
Agile development, software engineering
Agile development, software engineeringAgile development, software engineering
Agile development, software engineering
 

Similar to Mykola Mykytenko: MLOps: your way from nonsense to valuable effect (approaches, cases, tools)

MLOps – Applying DevOps to Competitive Advantage
MLOps – Applying DevOps to Competitive AdvantageMLOps – Applying DevOps to Competitive Advantage
MLOps – Applying DevOps to Competitive AdvantageDATAVERSITY
 
MLOps Bridging the gap between Data Scientists and Ops.
MLOps Bridging the gap between Data Scientists and Ops.MLOps Bridging the gap between Data Scientists and Ops.
MLOps Bridging the gap between Data Scientists and Ops.Knoldus Inc.
 
Design Like a Pro: Machine Learning Basics
Design Like a Pro: Machine Learning BasicsDesign Like a Pro: Machine Learning Basics
Design Like a Pro: Machine Learning BasicsInductive Automation
 
Design Like a Pro: Machine Learning Basics
Design Like a Pro: Machine Learning BasicsDesign Like a Pro: Machine Learning Basics
Design Like a Pro: Machine Learning BasicsInductive Automation
 
FlorenceAI: Reinventing Data Science at Humana
FlorenceAI: Reinventing Data Science at HumanaFlorenceAI: Reinventing Data Science at Humana
FlorenceAI: Reinventing Data Science at HumanaDatabricks
 
Mohamed Sabri: Operationalize machine learning with Kubeflow
Mohamed Sabri: Operationalize machine learning with KubeflowMohamed Sabri: Operationalize machine learning with Kubeflow
Mohamed Sabri: Operationalize machine learning with KubeflowLviv Startup Club
 
Mohamed Sabri: Operationalize machine learning with Kubeflow
Mohamed Sabri: Operationalize machine learning with KubeflowMohamed Sabri: Operationalize machine learning with Kubeflow
Mohamed Sabri: Operationalize machine learning with KubeflowEdunomica
 
Operationalizing Edge Machine Learning with Apache Spark with Nisha Talagala ...
Operationalizing Edge Machine Learning with Apache Spark with Nisha Talagala ...Operationalizing Edge Machine Learning with Apache Spark with Nisha Talagala ...
Operationalizing Edge Machine Learning with Apache Spark with Nisha Talagala ...Databricks
 
If You Are Not Embedding Analytics Into Your Day To Day Processes, You Are Do...
If You Are Not Embedding Analytics Into Your Day To Day Processes, You Are Do...If You Are Not Embedding Analytics Into Your Day To Day Processes, You Are Do...
If You Are Not Embedding Analytics Into Your Day To Day Processes, You Are Do...Dell World
 
Machine learning in production
Machine learning in productionMachine learning in production
Machine learning in productionTuri, Inc.
 
Why do the majority of Data Science projects never make it to production?
Why do the majority of Data Science projects never make it to production?Why do the majority of Data Science projects never make it to production?
Why do the majority of Data Science projects never make it to production?Itai Yaffe
 
Building a Scalable and reliable open source ML Platform with MLFlow
Building a Scalable and reliable open source ML Platform with MLFlowBuilding a Scalable and reliable open source ML Platform with MLFlow
Building a Scalable and reliable open source ML Platform with MLFlowGoDataDriven
 
DutchMLSchool. ML for Energy Trading and Automotive Sector
DutchMLSchool. ML for Energy Trading and Automotive SectorDutchMLSchool. ML for Energy Trading and Automotive Sector
DutchMLSchool. ML for Energy Trading and Automotive SectorBigML, Inc
 
MLOps Virtual Event: Automating ML at Scale
MLOps Virtual Event: Automating ML at ScaleMLOps Virtual Event: Automating ML at Scale
MLOps Virtual Event: Automating ML at ScaleDatabricks
 
The Fine Art of Combining Capacity Management with Machine Learning
The Fine Art of Combining Capacity Management with Machine LearningThe Fine Art of Combining Capacity Management with Machine Learning
The Fine Art of Combining Capacity Management with Machine LearningPrecisely
 
Data Analytics in Digital Transformation
Data Analytics in Digital TransformationData Analytics in Digital Transformation
Data Analytics in Digital TransformationMukund Babbar
 
Building a Real-Time Security Application Using Log Data and Machine Learning...
Building a Real-Time Security Application Using Log Data and Machine Learning...Building a Real-Time Security Application Using Log Data and Machine Learning...
Building a Real-Time Security Application Using Log Data and Machine Learning...Sri Ambati
 
Cnvrg webinar continual learning
Cnvrg webinar   continual learningCnvrg webinar   continual learning
Cnvrg webinar continual learningMaya Perry
 

Similar to Mykola Mykytenko: MLOps: your way from nonsense to valuable effect (approaches, cases, tools) (20)

MLOps – Applying DevOps to Competitive Advantage
MLOps – Applying DevOps to Competitive AdvantageMLOps – Applying DevOps to Competitive Advantage
MLOps – Applying DevOps to Competitive Advantage
 
MLOps Bridging the gap between Data Scientists and Ops.
MLOps Bridging the gap between Data Scientists and Ops.MLOps Bridging the gap between Data Scientists and Ops.
MLOps Bridging the gap between Data Scientists and Ops.
 
Design Like a Pro: Machine Learning Basics
Design Like a Pro: Machine Learning BasicsDesign Like a Pro: Machine Learning Basics
Design Like a Pro: Machine Learning Basics
 
Design Like a Pro: Machine Learning Basics
Design Like a Pro: Machine Learning BasicsDesign Like a Pro: Machine Learning Basics
Design Like a Pro: Machine Learning Basics
 
FlorenceAI: Reinventing Data Science at Humana
FlorenceAI: Reinventing Data Science at HumanaFlorenceAI: Reinventing Data Science at Humana
FlorenceAI: Reinventing Data Science at Humana
 
Mohamed Sabri: Operationalize machine learning with Kubeflow
Mohamed Sabri: Operationalize machine learning with KubeflowMohamed Sabri: Operationalize machine learning with Kubeflow
Mohamed Sabri: Operationalize machine learning with Kubeflow
 
Mohamed Sabri: Operationalize machine learning with Kubeflow
Mohamed Sabri: Operationalize machine learning with KubeflowMohamed Sabri: Operationalize machine learning with Kubeflow
Mohamed Sabri: Operationalize machine learning with Kubeflow
 
Operationalizing Edge Machine Learning with Apache Spark with Nisha Talagala ...
Operationalizing Edge Machine Learning with Apache Spark with Nisha Talagala ...Operationalizing Edge Machine Learning with Apache Spark with Nisha Talagala ...
Operationalizing Edge Machine Learning with Apache Spark with Nisha Talagala ...
 
If You Are Not Embedding Analytics Into Your Day To Day Processes, You Are Do...
If You Are Not Embedding Analytics Into Your Day To Day Processes, You Are Do...If You Are Not Embedding Analytics Into Your Day To Day Processes, You Are Do...
If You Are Not Embedding Analytics Into Your Day To Day Processes, You Are Do...
 
Machine learning in production
Machine learning in productionMachine learning in production
Machine learning in production
 
Why do the majority of Data Science projects never make it to production?
Why do the majority of Data Science projects never make it to production?Why do the majority of Data Science projects never make it to production?
Why do the majority of Data Science projects never make it to production?
 
Building a Scalable and reliable open source ML Platform with MLFlow
Building a Scalable and reliable open source ML Platform with MLFlowBuilding a Scalable and reliable open source ML Platform with MLFlow
Building a Scalable and reliable open source ML Platform with MLFlow
 
DutchMLSchool. ML for Energy Trading and Automotive Sector
DutchMLSchool. ML for Energy Trading and Automotive SectorDutchMLSchool. ML for Energy Trading and Automotive Sector
DutchMLSchool. ML for Energy Trading and Automotive Sector
 
MLOps.pptx
MLOps.pptxMLOps.pptx
MLOps.pptx
 
MLOps Virtual Event: Automating ML at Scale
MLOps Virtual Event: Automating ML at ScaleMLOps Virtual Event: Automating ML at Scale
MLOps Virtual Event: Automating ML at Scale
 
The Fine Art of Combining Capacity Management with Machine Learning
The Fine Art of Combining Capacity Management with Machine LearningThe Fine Art of Combining Capacity Management with Machine Learning
The Fine Art of Combining Capacity Management with Machine Learning
 
Data Analytics in Digital Transformation
Data Analytics in Digital TransformationData Analytics in Digital Transformation
Data Analytics in Digital Transformation
 
Building a Real-Time Security Application Using Log Data and Machine Learning...
Building a Real-Time Security Application Using Log Data and Machine Learning...Building a Real-Time Security Application Using Log Data and Machine Learning...
Building a Real-Time Security Application Using Log Data and Machine Learning...
 
How to use continual learning in your ML models
How to use continual learning in your ML modelsHow to use continual learning in your ML models
How to use continual learning in your ML models
 
Cnvrg webinar continual learning
Cnvrg webinar   continual learningCnvrg webinar   continual learning
Cnvrg webinar continual learning
 

More from Lviv Startup Club

Artem Bykovets: 4 Вершники апокаліпсису робочих стосунків (+антидоти до них) ...
Artem Bykovets: 4 Вершники апокаліпсису робочих стосунків (+антидоти до них) ...Artem Bykovets: 4 Вершники апокаліпсису робочих стосунків (+антидоти до них) ...
Artem Bykovets: 4 Вершники апокаліпсису робочих стосунків (+антидоти до них) ...Lviv Startup Club
 
Dmytro Khudenko: Challenges of implementing task managers in the corporate an...
Dmytro Khudenko: Challenges of implementing task managers in the corporate an...Dmytro Khudenko: Challenges of implementing task managers in the corporate an...
Dmytro Khudenko: Challenges of implementing task managers in the corporate an...Lviv Startup Club
 
Sergii Melnichenko: Лідерство в Agile командах: ТОП-5 основних психологічних ...
Sergii Melnichenko: Лідерство в Agile командах: ТОП-5 основних психологічних ...Sergii Melnichenko: Лідерство в Agile командах: ТОП-5 основних психологічних ...
Sergii Melnichenko: Лідерство в Agile командах: ТОП-5 основних психологічних ...Lviv Startup Club
 
Mariia Rashkevych: Підвищення ефективності розроблення та реалізації освітніх...
Mariia Rashkevych: Підвищення ефективності розроблення та реалізації освітніх...Mariia Rashkevych: Підвищення ефективності розроблення та реалізації освітніх...
Mariia Rashkevych: Підвищення ефективності розроблення та реалізації освітніх...Lviv Startup Club
 
Mykhailo Hryhorash: What can be good in a "bad" project? (UA)
Mykhailo Hryhorash: What can be good in a "bad" project? (UA)Mykhailo Hryhorash: What can be good in a "bad" project? (UA)
Mykhailo Hryhorash: What can be good in a "bad" project? (UA)Lviv Startup Club
 
Oleksii Kyselov: Що заважає ПМу зростати? Розбір практичних кейсів (UA)
Oleksii Kyselov: Що заважає ПМу зростати? Розбір практичних кейсів (UA)Oleksii Kyselov: Що заважає ПМу зростати? Розбір практичних кейсів (UA)
Oleksii Kyselov: Що заважає ПМу зростати? Розбір практичних кейсів (UA)Lviv Startup Club
 
Yaroslav Osolikhin: «Неідеальний» проєктний менеджер: People Management під ч...
Yaroslav Osolikhin: «Неідеальний» проєктний менеджер: People Management під ч...Yaroslav Osolikhin: «Неідеальний» проєктний менеджер: People Management під ч...
Yaroslav Osolikhin: «Неідеальний» проєктний менеджер: People Management під ч...Lviv Startup Club
 
Mariya Yeremenko: Вплив Генеративного ШІ на сучасний світ та на особисту ефек...
Mariya Yeremenko: Вплив Генеративного ШІ на сучасний світ та на особисту ефек...Mariya Yeremenko: Вплив Генеративного ШІ на сучасний світ та на особисту ефек...
Mariya Yeremenko: Вплив Генеративного ШІ на сучасний світ та на особисту ефек...Lviv Startup Club
 
Petro Nikolaiev & Dmytro Kisov: ТОП-5 методів дослідження клієнтів для успіху...
Petro Nikolaiev & Dmytro Kisov: ТОП-5 методів дослідження клієнтів для успіху...Petro Nikolaiev & Dmytro Kisov: ТОП-5 методів дослідження клієнтів для успіху...
Petro Nikolaiev & Dmytro Kisov: ТОП-5 методів дослідження клієнтів для успіху...Lviv Startup Club
 
Maksym Stelmakh : Державні електронні послуги та сервіси: чому бізнесу варто ...
Maksym Stelmakh : Державні електронні послуги та сервіси: чому бізнесу варто ...Maksym Stelmakh : Державні електронні послуги та сервіси: чому бізнесу варто ...
Maksym Stelmakh : Державні електронні послуги та сервіси: чому бізнесу варто ...Lviv Startup Club
 
Alexander Marchenko: Проблеми росту продуктової екосистеми (UA)
Alexander Marchenko: Проблеми росту продуктової екосистеми (UA)Alexander Marchenko: Проблеми росту продуктової екосистеми (UA)
Alexander Marchenko: Проблеми росту продуктової екосистеми (UA)Lviv Startup Club
 
Oleksandr Grytsenko: Save your Job або прокачай скіли до Engineering Manageme...
Oleksandr Grytsenko: Save your Job або прокачай скіли до Engineering Manageme...Oleksandr Grytsenko: Save your Job або прокачай скіли до Engineering Manageme...
Oleksandr Grytsenko: Save your Job або прокачай скіли до Engineering Manageme...Lviv Startup Club
 
Yuliia Pieskova: Фідбек: не лише "як", але й "коли" і "навіщо" (UA)
Yuliia Pieskova: Фідбек: не лише "як", але й "коли" і "навіщо" (UA)Yuliia Pieskova: Фідбек: не лише "як", але й "коли" і "навіщо" (UA)
Yuliia Pieskova: Фідбек: не лише "як", але й "коли" і "навіщо" (UA)Lviv Startup Club
 
Nataliya Kryvonis: Essential soft skills to lead your team (UA)
Nataliya Kryvonis: Essential soft skills to lead your team (UA)Nataliya Kryvonis: Essential soft skills to lead your team (UA)
Nataliya Kryvonis: Essential soft skills to lead your team (UA)Lviv Startup Club
 
Volodymyr Salyha: Stakeholder Alchemy: Transforming Analysis into Meaningful ...
Volodymyr Salyha: Stakeholder Alchemy: Transforming Analysis into Meaningful ...Volodymyr Salyha: Stakeholder Alchemy: Transforming Analysis into Meaningful ...
Volodymyr Salyha: Stakeholder Alchemy: Transforming Analysis into Meaningful ...Lviv Startup Club
 
Anna Chalyuk: 7 інструментів та принципів, які допоможуть зробити вашу команд...
Anna Chalyuk: 7 інструментів та принципів, які допоможуть зробити вашу команд...Anna Chalyuk: 7 інструментів та принципів, які допоможуть зробити вашу команд...
Anna Chalyuk: 7 інструментів та принципів, які допоможуть зробити вашу команд...Lviv Startup Club
 
Oksana Smilka: Цінності, цілі та (де) мотивація (UA)
Oksana Smilka: Цінності, цілі та (де) мотивація (UA)Oksana Smilka: Цінності, цілі та (де) мотивація (UA)
Oksana Smilka: Цінності, цілі та (де) мотивація (UA)Lviv Startup Club
 
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...Lviv Startup Club
 
Andrii Skoromnyi: Чому не працює методика "5 Чому?" – і яка є альтернатива? (UA)
Andrii Skoromnyi: Чому не працює методика "5 Чому?" – і яка є альтернатива? (UA)Andrii Skoromnyi: Чому не працює методика "5 Чому?" – і яка є альтернатива? (UA)
Andrii Skoromnyi: Чому не працює методика "5 Чому?" – і яка є альтернатива? (UA)Lviv Startup Club
 
Maryna Sokyrko & Oleksandr Chugui: Building Product Passion: Developing AI ch...
Maryna Sokyrko & Oleksandr Chugui: Building Product Passion: Developing AI ch...Maryna Sokyrko & Oleksandr Chugui: Building Product Passion: Developing AI ch...
Maryna Sokyrko & Oleksandr Chugui: Building Product Passion: Developing AI ch...Lviv Startup Club
 

More from Lviv Startup Club (20)

Artem Bykovets: 4 Вершники апокаліпсису робочих стосунків (+антидоти до них) ...
Artem Bykovets: 4 Вершники апокаліпсису робочих стосунків (+антидоти до них) ...Artem Bykovets: 4 Вершники апокаліпсису робочих стосунків (+антидоти до них) ...
Artem Bykovets: 4 Вершники апокаліпсису робочих стосунків (+антидоти до них) ...
 
Dmytro Khudenko: Challenges of implementing task managers in the corporate an...
Dmytro Khudenko: Challenges of implementing task managers in the corporate an...Dmytro Khudenko: Challenges of implementing task managers in the corporate an...
Dmytro Khudenko: Challenges of implementing task managers in the corporate an...
 
Sergii Melnichenko: Лідерство в Agile командах: ТОП-5 основних психологічних ...
Sergii Melnichenko: Лідерство в Agile командах: ТОП-5 основних психологічних ...Sergii Melnichenko: Лідерство в Agile командах: ТОП-5 основних психологічних ...
Sergii Melnichenko: Лідерство в Agile командах: ТОП-5 основних психологічних ...
 
Mariia Rashkevych: Підвищення ефективності розроблення та реалізації освітніх...
Mariia Rashkevych: Підвищення ефективності розроблення та реалізації освітніх...Mariia Rashkevych: Підвищення ефективності розроблення та реалізації освітніх...
Mariia Rashkevych: Підвищення ефективності розроблення та реалізації освітніх...
 
Mykhailo Hryhorash: What can be good in a "bad" project? (UA)
Mykhailo Hryhorash: What can be good in a "bad" project? (UA)Mykhailo Hryhorash: What can be good in a "bad" project? (UA)
Mykhailo Hryhorash: What can be good in a "bad" project? (UA)
 
Oleksii Kyselov: Що заважає ПМу зростати? Розбір практичних кейсів (UA)
Oleksii Kyselov: Що заважає ПМу зростати? Розбір практичних кейсів (UA)Oleksii Kyselov: Що заважає ПМу зростати? Розбір практичних кейсів (UA)
Oleksii Kyselov: Що заважає ПМу зростати? Розбір практичних кейсів (UA)
 
Yaroslav Osolikhin: «Неідеальний» проєктний менеджер: People Management під ч...
Yaroslav Osolikhin: «Неідеальний» проєктний менеджер: People Management під ч...Yaroslav Osolikhin: «Неідеальний» проєктний менеджер: People Management під ч...
Yaroslav Osolikhin: «Неідеальний» проєктний менеджер: People Management під ч...
 
Mariya Yeremenko: Вплив Генеративного ШІ на сучасний світ та на особисту ефек...
Mariya Yeremenko: Вплив Генеративного ШІ на сучасний світ та на особисту ефек...Mariya Yeremenko: Вплив Генеративного ШІ на сучасний світ та на особисту ефек...
Mariya Yeremenko: Вплив Генеративного ШІ на сучасний світ та на особисту ефек...
 
Petro Nikolaiev & Dmytro Kisov: ТОП-5 методів дослідження клієнтів для успіху...
Petro Nikolaiev & Dmytro Kisov: ТОП-5 методів дослідження клієнтів для успіху...Petro Nikolaiev & Dmytro Kisov: ТОП-5 методів дослідження клієнтів для успіху...
Petro Nikolaiev & Dmytro Kisov: ТОП-5 методів дослідження клієнтів для успіху...
 
Maksym Stelmakh : Державні електронні послуги та сервіси: чому бізнесу варто ...
Maksym Stelmakh : Державні електронні послуги та сервіси: чому бізнесу варто ...Maksym Stelmakh : Державні електронні послуги та сервіси: чому бізнесу варто ...
Maksym Stelmakh : Державні електронні послуги та сервіси: чому бізнесу варто ...
 
Alexander Marchenko: Проблеми росту продуктової екосистеми (UA)
Alexander Marchenko: Проблеми росту продуктової екосистеми (UA)Alexander Marchenko: Проблеми росту продуктової екосистеми (UA)
Alexander Marchenko: Проблеми росту продуктової екосистеми (UA)
 
Oleksandr Grytsenko: Save your Job або прокачай скіли до Engineering Manageme...
Oleksandr Grytsenko: Save your Job або прокачай скіли до Engineering Manageme...Oleksandr Grytsenko: Save your Job або прокачай скіли до Engineering Manageme...
Oleksandr Grytsenko: Save your Job або прокачай скіли до Engineering Manageme...
 
Yuliia Pieskova: Фідбек: не лише "як", але й "коли" і "навіщо" (UA)
Yuliia Pieskova: Фідбек: не лише "як", але й "коли" і "навіщо" (UA)Yuliia Pieskova: Фідбек: не лише "як", але й "коли" і "навіщо" (UA)
Yuliia Pieskova: Фідбек: не лише "як", але й "коли" і "навіщо" (UA)
 
Nataliya Kryvonis: Essential soft skills to lead your team (UA)
Nataliya Kryvonis: Essential soft skills to lead your team (UA)Nataliya Kryvonis: Essential soft skills to lead your team (UA)
Nataliya Kryvonis: Essential soft skills to lead your team (UA)
 
Volodymyr Salyha: Stakeholder Alchemy: Transforming Analysis into Meaningful ...
Volodymyr Salyha: Stakeholder Alchemy: Transforming Analysis into Meaningful ...Volodymyr Salyha: Stakeholder Alchemy: Transforming Analysis into Meaningful ...
Volodymyr Salyha: Stakeholder Alchemy: Transforming Analysis into Meaningful ...
 
Anna Chalyuk: 7 інструментів та принципів, які допоможуть зробити вашу команд...
Anna Chalyuk: 7 інструментів та принципів, які допоможуть зробити вашу команд...Anna Chalyuk: 7 інструментів та принципів, які допоможуть зробити вашу команд...
Anna Chalyuk: 7 інструментів та принципів, які допоможуть зробити вашу команд...
 
Oksana Smilka: Цінності, цілі та (де) мотивація (UA)
Oksana Smilka: Цінності, цілі та (де) мотивація (UA)Oksana Smilka: Цінності, цілі та (де) мотивація (UA)
Oksana Smilka: Цінності, цілі та (де) мотивація (UA)
 
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
 
Andrii Skoromnyi: Чому не працює методика "5 Чому?" – і яка є альтернатива? (UA)
Andrii Skoromnyi: Чому не працює методика "5 Чому?" – і яка є альтернатива? (UA)Andrii Skoromnyi: Чому не працює методика "5 Чому?" – і яка є альтернатива? (UA)
Andrii Skoromnyi: Чому не працює методика "5 Чому?" – і яка є альтернатива? (UA)
 
Maryna Sokyrko & Oleksandr Chugui: Building Product Passion: Developing AI ch...
Maryna Sokyrko & Oleksandr Chugui: Building Product Passion: Developing AI ch...Maryna Sokyrko & Oleksandr Chugui: Building Product Passion: Developing AI ch...
Maryna Sokyrko & Oleksandr Chugui: Building Product Passion: Developing AI ch...
 

Recently uploaded

Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiLow Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiSuhani Kapoor
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxEmmanuel Dauda
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFxolyaivanovalion
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxolyaivanovalion
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfLars Albertsson
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptSonatrach
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxolyaivanovalion
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfRachmat Ramadhan H
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysismanisha194592
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxolyaivanovalion
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts ServiceSapana Sha
 
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfKantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfSocial Samosa
 
B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxStephen266013
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiSuhani Kapoor
 
Ukraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSUkraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSAishani27
 
VidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxVidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxolyaivanovalion
 
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一ffjhghh
 
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...Suhani Kapoor
 

Recently uploaded (20)

Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiLow Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptx
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptx
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdf
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptx
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts Service
 
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfKantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
 
B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docx
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
 
Ukraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSUkraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICS
 
VidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxVidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptx
 
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
 
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...
 

Mykola Mykytenko: MLOps: your way from nonsense to valuable effect (approaches, cases, tools)

  • 1. MLOps: your way from nonsense to valuable effect A p p r o a c h e s , c a s e s , t o o l s
  • 2. Speaker about Head of the Data Science architecture at “First Ukrainian International Bank” Mykola Mykytenko Experience: • 10+ years in software development • Construction of high-load BI solution • Construction of architecture for Data Science applications and processes
  • 3. 30 років на ринку 243 1 825 млн. грн податків сплатив банк в 2020 році топ-5 в щорічному рейтингу «50 провідних банків України» 4-й банк в Україні за об'ємом чистого прибутку за 2020 рік 8,5 1,6 відділення в Україні тисячі співробітників мільйонів роздрібних клієнтів Найкомфортніших банків, лідер в номінації «Зручність» за версією Forbes Україна топ-3 ПУМБ - НАЙБІЛЬШИЙ БАНК З УКРАЇНСЬКИМ ПРИВАТНИМ КАПІТАЛОМ
  • 4.
  • 5.
  • 7. 87% of data science projects never make it into production V e n t u r e B e a t r e p o r t , T r a n s f o r m 2 0 1 9
  • 9. No ML model in production, No Happy Business!!! Models can only add value to an organization when insights are regularly available to end user. No Happy Client!!!
  • 11. In which phase ML project stall? Only fifth of ML projects are not delayed 46% of ML project ready for production deployment but stall for some reason Alegion, Dimensional Research’s “What data scientists tell us about AI model training today”
  • 12. Develop and deploy model is not a one-man story S e e i n s c r e e n s i n N o v e m b e r 2 0 2 1 Data Scientist who deploy to production by himself
  • 13. In which phase ML project stall? Only fifth of ML projects are not delayed 46% of ML project ready for production deployment but stall for some reason O’Reilly Media, “What Is MLOps? “ by Mark Treveil, Lynn Heidman
  • 14. Wide range of ML system elements • To develop and operate complex systems like these you need add additional principles, such as CI, CD and CT. Google, Hidden Technical Debt in Machine Learning Systems
  • 15. ML project long dev lifecycle • A lot of stages • A lot of different tasks • A lot of knowledge areas • A lot of a lot Setting Up Machine Learning Projects. Full Stack Deep Learning
  • 16. How long it takes to deploy an ML model into production? Algorithmia’s “2020 State of Enterprise ML” ML model deployment timeline
  • 17. What can help deal with it? • MLOps is the set of practices at the intersection of Machine Learning, DevOps and Machine Learning • MLOps is a set of policies, practices and governance for managing Machine Learning solutions throughout the lifecycle
  • 18. Benefits of MLOps • Accelerate time-to-value • Improve confidence in model and quality of production • Optimize productivity of team, lower development time to 80% • Faster response times • Improve compliance with regulatory requirements • Manage infrastructure Fast development Fast response times Quality of production models Compliance with regulatory governance
  • 19. Key points of MLOps? • Organizational • Governance • Teams • Communications • Resource • People • Technology • Approaches • Frameworks
  • 20. How does it work? • Focus on improve communication • Manage and remove duplicate routines • Focus on collaboration • Build platform and centralize framework • Build automated proceeds • Implements approaches and tools “What is MLOps” from nealanalytics blog
  • 21. How do I get started with MLOps?
  • 22. MLOps level 0 • Every step is manual, require manual execution • Require manual transition • Disconnection between DS and engineers lead training-serving skew • Infrequent release iterations: new model deployed a couple times per year • CI is ignored because few changes, testing is part of the notebooks • CD is ignore aren’t frequent model version deployments • Deployment refers to the prediction service, not entire ML system • Lack of performance monitoring, do no track log, predictions and actions Prediction service Model serving Model registry Trained model Manual model development Manual data processing Offline data ML Ops experimentation/development/test staging/preproduction/production
  • 23. Data scientists deploying efforts It takes a quarter of data scientist time doing development.
  • 24. What makes Data Scientist numb with horror? Modeling Deploy Magician of Mathematics and Algorithms
  • 25. Offline (Batch) Online (Web-service) Real-time processing (Embedded) The first step in determining how to deploy a model Is understanding how end users should interact with that model’s prediction
  • 26. How do we see ML applications differently D a t a S c i e n t i s t C u s t o m e r
  • 27. Offline (Batch) • Run on a bulk data • Run on schedule • Not needed real-time • Flexibly manage resource • Rerun the job of case of error • Well educated model Orchestrator DWH or Data Lake Batch job pipeline Trigger Get data Save data and log DWH or Data Lake Save predict Call model ML model
  • 28. Offline (Batch) • Use: Collection return delay score • Predict all batch for 5-10 minutes (from end-to-end) • Data always ready for business Airflow DWH Trigger Get data Data Lake Save predict, data and log Call model Model store VM Host Python app Load model Run ML model
  • 29. Online (sync API) • Run on current case • 24/7 execution ready • Application append on result • User enable to take action • Impossible manage resource • Not possible to fix production error • Latency important ML model on cluster Load balancer Call Client Client Client Call Wait response! Data Lake Call log Predict log Performance log
  • 30. Online (sync API) • Use: Customer fraud detection • Hundred milliseconds for answer • Dynamic cluster management and balancing • High risk of governance Kubernetes cluster Nginx Call App App Actions app Call Wait response! Data Lake Call log Performance log Predict and container log Fraud or not? Data Science на страже закона: как мы автоматизировали финансовый мониторинг в ПУМБ Call
  • 31. Online (async API) • Run on current case • 24/7 execution ready • Application do not append on result • Result is not critical • Possible manage resource • Not possible to fix production error • Latency not so important ML model on cluster Load balancer Async call Client Client Client Async call Async Framework
  • 32. Real-time • Run on current case • 24/7 execution ready • High-level load • Application append on result • Impossible manage resource • Not possible to fix production error • Latency critical Clients Application engine Real-time processing app Embedded ML module Frameworks: jep, jpy, Jython, jni
  • 33. Real-time • Use: Transaction fraud • Tens milliseconds for answer • Thousands of transaction per second Processing center Application engine Processing business workflow Embedded ML module Transactions
  • 34. MLOps level 1 • Achieve goal - model in production • Automatically build, test, package and deploy • Unit testing serving scripts • Testing integration between components • Testing that model do not produce bad or NaN • Testing that components produce artifacts • Monitor model Prediction service Model registry Trained model Manual model development Manual data processing MLOps experimentation/development/test staging/preproduction/production CI CD: Pipeline deployment CD: Model serving Automated training pipeline Performance monitoring
  • 35. CI/CD • All done automated, Data Scientist and Business get notifications with result • Pipeline and its components are built, tested, and packaged when new code is committed or pushed, or merged • Train model on huge data if required • Spent time only on model analyze • Test it well Source code Push or merge event Get model Model registry Model serving Integration test Prediction service Monitoring Metadata store Metadata store Get metadata
  • 36. Testing • Testing is crucial to ensure that frequent changes aren’t sacrificing quality • Software testing is well studied “The ML Test Score: A Rubric for ML Production Readiness and Technical Debt Reduction”
  • 37. ML model testing • Intersection of Machine learning and testing less well explored in the literature • ML system testing more complex • ML system depends strongly on data and models (cannot be strongly specified) • ML models needs debug ability, rollbacks and monitoring • 28 actionable tests at Google “The ML Test Score: A Rubric for ML Production Readiness and Technical Debt Reduction”
  • 38. Testing pyramid • Contain Data, ML, UI, Integrated, Performances and Governance testing • More types of testing will make your Test Pyramid rethink “Continuous Delivery for Machine Learning”, Danilo Sato, Arif Wider, Cristof Windheuser
  • 39. Monitoring • Based on data • Based on ML model • Based on system • At least contain 2-3 metrics for all three categories • Operation metrics should be monitored real- time level or at least daily • Stability and performance metrics at larger time frame depending on domain (weekly, etc.) Abzooba, “MLOps: Model Monitoring 101” by Pronojit Saha and Dr. Arnab Bose
  • 40. Monitoring influence • Model performance implemented by tracking performance • Trigger based on performance metric decrease call automated model retraining and making decision INNOQ, “MLOps Principles” by Dr. Larysa Visengeriyeva, Anja Kammer, Isabel Bar and other
  • 41. MLOps level 2 • Support interactive execution for quick experimentation and long- running jobs • Provide data connectors to wide data source range • Provide efficient data transformation and feature engineering • Support scalable batch and stream data • Support feature and metadata store • Support Data Engineer and Data Scientist tasks management Prediction service Model registry Trained model Manual model development Data analysis experimentation/development/test staging/preproduction/production CI CD: Pipeline deployment CD: Model serving Performance monitoring Feature store Batch fetching
  • 42. Data processing platform • Keep all data changes • Available to repeat experiments • Data connected to model • Track journey of data • Visualize of complete data flow • Implement low risk changes • Track errors in data processes • Roll out and roll back steps • Data discovery Pachyderm, “Pachyderm overview” Data Versioning Data Pipelines Data Lineage
  • 43. Two loops • qqqq “Completing the Machine Learning Loop”, Jimmy Whitaker • Dealing with two moving pieces: Code and Data • Code Loop is crucial for ML model stability and efficiency • Data Loop is essential to improving model quality and relevance
  • 44. MLOps level 3 • Automated ML pipelines lets Data Scientists rapidly explore new ideas around feature engineering, model architecture and hyper parameters • Data Scientists can implements and deploy to target environments ideas automatically Model registry Trained model Automated model development Data analysis experimentation/development/test staging/preproduction/production CI CD: Pipeline deployment Performance monitoring Batch fetching Trigger
  • 45. Automated CI/CD ML pipeline • End-to-end automated pipeline consists 6-8 steps • The data analysis step is still a manual process for Data Scientist before new pipeline iteration • The model analysis as step is also a manual process Google, “”MLOps: Continuous delivery and automation pipelines in machine learning”
  • 46. Continuous Delivery for Machine Learning (CD4ML) Software engineering approach in which cross-functional team produces machine learning applications based on code, data and models in small and safe increments that can be reproduced and reliably released at any time, in short adaptation cycles. “Continuous Delivery for Machine Learning”, Danilo Sato, Arif Wider, Cristof Windheuser End-to-end Continuous Delivery process for ML
  • 47. Governance responsible roles • Regulatory complience • Reproducibility and traceability • Audit and documentation • Pre-production verification • Transparency and expandability • Quality and compliance O’Reilly Media, “What Is MLOps? “ by Mark Treveil, Lynn Heidman
  • 48. M L O p s P l a t f o r m CPUs GPUs HDFS Storage Compute C o l l a b o r a t e M o n i t o r i n g On-Premises Data Preparation Build Train Deploy Businesses Domain Experts Data Engineers Data Scientists ML Architects
  • 49. Thank you for attention! W W W . P U M B . U A Mykola Mykytenko N i ko l ay. M i k i t e n ko @ f u i b . c o m i n fo @ f u i b . c o m
  • 50.
  • 51. Links 1. Перший Український Міжнародний Банк 2. VentureBeat report, Transform 2019 3. Alegion, Dimensional Research’s Survey “What data scientists tell us about AI model training today” 4. O’Reilly Media, “What Is MLOps? “ by Mark Treveil, Lynn Heidman 5. Google, Hidden Technical Debt in Machine Learning Systems 6. Setting up Machine Learning Projects, Full Stack Deep Learning 7. Algorithmia’s “2020 State of Enterprise ML” 8. “What is MLOps” from nealanalytics blog 9. Data Science на страже закона: как мы автоматизировали финансовый мониторинг в ПУМБ 10.The ML Test Score: A Rubric for ML Production Readiness and Technical Debt Reduction 11.“Continuous Delivery for Machine Learning”, Danilo Sato, Arif Wider, Cristof Windheuser 12.Abzooba, “MLOps: Model Monitoring 101” by Pronojit Saha and Dr. Arnab Bose
  • 52. Links 13. INNOQ, “MLOps Principles” by Dr. Larysa Visengeriyeva, Anja Kammer, Isabel Bar and other 14. Pachyderm, “Pachyderm overview” 15. Completing the Machine Learning Loop”, Jimmy Whitaker 16. Google, “”MLOps: Continuous delivery and automation pipelines in machine learning”