SlideShare una empresa de Scribd logo
1 de 20
AIOPS
HVORDAN VELGE UT KI PROSJEKTER OG GÅ FRA PROTOTYP TIL DRIFT
Volker Hoffmann <volker.hoffmann@sintef.no>
Energytics Avslutningsseminar, 10 Juni 2020
Context: Elements on AI Transformation
2
Cases
& Value
Data
Ecosystems
Techniques
& Tools
Workflow
Integration
Open
Culture
Source: Bughin et al. McKinsey Global Institute, Artificial intelligence, June 2017.
Elements on AI Transformation
3
Cases
& Value
Data
Ecosystems
Techniques
& Tools
Workflow
Integration
Open
Culture
Framework: Concept to Impact
4
Cases
& Value
Data
Ecosystems
Techniques
& Tools
Workflow
Integration
Open
Culture
5
Business Drivers
Data
Science
Model
Versioning
Model
Deployment
Data
Pipelines
MLOps & DevOps
Business Development & Data Science
Bring together internal and
external stakeholders with
data scientists. Generate
ideas about processes that
can be improved with data-
driven insights.
Set performance indicators
and requirements so that
results can be decision
gated.
Facilitated by frameworks
such as Design Thinking, 10
Types of Innovation, or
types of Business Process
Analysis (LEAN, Six Sigma).
Prepare, process, and
analyze data to assess
validity of ideas generated
together with business
stakeholders.
Log and document
experiments and keep
stakeholders updated using
performance indicators.
This is a heavily iterative
process as hypotheses
become invalidated, are
adjusted, and finally
validated.
Python, R, Julia
For successful applications,
iteratively improve models
by model tuning, feature
engineering, and addition
of new data sources.
Track and archive model
versions and associated
training data (data
provenance).
This ensures reproducibility
and enables automated
rollout (and rollback) when
models improve (or fail).
Make models available for
integration into new and
existing workflows. Serve
models through APIs, so
they are agnostic to to
existing infrastructure.
Automate rollout/rollback
through by continuous
integration and deployment
(CI/CD) with performance
monitoring.
This ensures that best
performing models are
automatically deployed and
that misbehaving models
are rolled back.
Spark, Docker, Kubernetes
To exploit operational
models, build robust data
ingestion pipelines. This
enables real- and near-time
processing and continuous
improvement of models.
Archive all inbound data to
allow data scientists and
business stakeholders to
develop new and iterate on
existing improvements.
Kafka, MQTT, Avro, Thrift
Data Engineering
6
Business Drivers
Data
Science
Model
Versioning
Model
Deployment
Data
Pipelines
MLOps & DevOps
Business Development & Data Science
Connect with stakeholders
Low hanging fruits
High-impact projects
Set performance indicators
Set performance targets
Use Design Thinking, 10
Types of Innovation, LEAN,
Six Sigma, etc
Keep stakeholders updated
Build prototypes
Log experiments
Iterate, iterate, iterate
Python, R, Julia
Iteratively improve models
Feature engineering
Hyperparameters
Track and archive models
Track and archive data
Make it reproducible
Add models to workflows
Serve through APIs
Monitor performance
Automate deployment
Automate rollback
Spark, Docker, Kubernetes
Build robust pipelines
Operate on real-time data
Archive data
Kafka, MQTT, Avro, Thrift
Data Engineering
7
Business Drivers
Data
Science
Model
Versioning
Model
Deployment
Data
Pipelines
MLOps & DevOps
Business Development & Data Science
Connect with stakeholders
Low hanging fruits
High-impact projects
Set performance indicators
Set performance targets
Use Design Thinking, 10
Types of Innovation, LEAN,
Six Sigma, etc
Keep stakeholders updated
Build prototypes
Log experiments
Iterate, iterate, iterate
Python, R, Julia
Iteratively improve models
Feature engineering
Hyperparameters
Track and archive models
Track and archive data
Make it reproducible
Add models to workflows
Serve through APIs
Monitor performance
Automate deployment
Automate rollback
Spark, Docker, Kubernetes
Build robust pipelines
Operate on real-time data
Archive data
Kafka, MQTT, Avro, Thrift
Data Engineering
8
Business Drivers
Data
Science
Model
Versioning
Model
Deployment
Data
Pipelines
MLOps & DevOps
Business Development & Data Science
Connect with stakeholders
Low hanging fruits
High-impact projects
Set performance indicators
Set performance targets
Use Design Thinking, 10
Types of Innovation, LEAN,
Six Sigma, etc
Keep stakeholders updated
Build prototypes
Log experiments
Iterate, iterate, iterate
Python, R, Julia
Iteratively improve models
Feature engineering
Hyperparameters
Track and archive models
Track and archive data
Make it reproducible
Add models to workflows
Serve through APIs
Monitor performance
Automate deployment
Automate rollback
Spark, Docker, Kubernetes
Build robust pipelines
Operate on real-time data
Archive data
Kafka, MQTT, Avro, Thrift
Data Engineering
9
Business Drivers
Data
Science
Model
Versioning
Model
Deployment
Data
Pipelines
MLOps & DevOps
Business Development & Data Science
Connect with stakeholders
Low hanging fruits
High-impact projects
Set performance indicators
Set performance targets
Use Design Thinking, 10
Types of Innovation, LEAN,
Six Sigma, etc
Keep stakeholders updated
Build prototypes
Log experiments
Iterate, iterate, iterate
Python, R, Julia
Iteratively improve models
Feature engineering
Hyperparameters
Track and archive models
Track and archive data
Make it reproducible
Add models to workflows
Serve through APIs
Monitor performance
Automate deployment
Automate rollback
Spark, Docker, Kubernetes
Build robust pipelines
Operate on real-time data
Archive data
Kafka, MQTT, Avro, Thrift
Data Engineering
10
Business Drivers
Data
Science
Model
Versioning
Model
Deployment
Data
Pipelines
MLOps & DevOps
Business Development & Data Science
Connect with stakeholders
Low hanging fruits
High-impact projects
Set performance indicators
Set performance targets
Use Design Thinking, 10
Types of Innovation, LEAN,
Six Sigma, etc
Keep stakeholders updated
Build prototypes
Log experiments
Iterate, iterate, iterate
Python, R, Julia
Iteratively improve models
Feature engineering
Hyperparameters
Track and archive models
Track and archive data
Make it reproducible
Add models to workflows
Serve through APIs
Monitor performance
Automate deployment
Automate rollback
Spark, Docker, Kubernetes
Build robust pipelines
Operate on real-time data
Archive data
Kafka, MQTT, Avro, Thrift
Data Engineering
Tools to Speed You Up
11
Cases
& Value
Data
Ecosystems
Techniques
& Tools
Workflow
Integration
Open
Culture
Neptune
Neptune is a tracker for experiments with
focus on Python. It is a hosted service.
Experiments are tracked by using library
hooks to register (model) parameters,
evaluation results, and upload artifacts (such
as models, hashes of training data, or even
code). The library can track hardware usage
and experiment progress.
The results can be analyzed and compared on
a website. There are also collaborative
options. Neptune has integrations with
Jupyter notebooks, various ML libraries,
visualizers (HiFlow, TensorBoard), other
trackers (MLFlow), and external offerings
(Amazon Sagemaker).
They provide an API to query results from
experiment. This can be used to feed CI/CD
pipelines for model deployment.
12
$ conda create --name neptune python=3.6
$ conda activate neptune
$ conda install -c conda-forge neptune-client
$ cd /somewhere
---> https://ui.neptune.ai/
---> Create Account, Log In, “Getting Started”
MLFlow
MLFlow is an experiment tracker and generic
model server. It can be self-hosted.
Experiments are tracked by using library
hooks to register (model) parameters,
evaluation results, and upload artifacts (such
as models, hashes of training data, or even
code). Artifacts can be logged to local,
remote, or cloud storage (S3, GFS, etc).
Results can be analyzed through a web UI
and CSV export is available. Models are
packaged as a wrapper around the underlying
format (Sklearn, XGBoost, Torch, etc). They
can be pushed to Spark for batch inference
or served through REST.
There are CLI, Python, R, Java, and REST
APIs for further integration with CI/CD
pipelines. Models can be pushed to cloud
services (SageMaker, AzureML, ...).
13
$ conda create --name mlflow python=3.6
$ conda activate mlflow
$ conda install -c conda-forge mlflow
$ cd /somewhere
$ mlflow ui
---> http://localhost:5000
---> https://mlflow.org/docs/latest/quickstart.html
Kubeflow
Kubeflow is essentially a self-hosted version
of the Google AI platform. It uses Kubernetes
to abstract away infrastructure.
Kubeflow can deploy Jupyter notebooks, run
pipelines for data processing and model
training (scheduled, on-demand), organize
runs, archive models and other artifacts, and
expose models through endpoints. Pipelines
are compute graphs and are described in
Python with a DSL. Their components are
wrapped as Docker images.
It integrates with GCP so it can elastically
scale to the cloud compute and storage
(e.g., distributed model training). It also
integrates with offerings such as BigQuery or
Dataproc.
The solution is heavy and complex but
enables rapid scale-out. It is especially
applicable if infrastructure is already
managed through Kubernetes.
14
https://www.kubeflow.org/docs/started/workstation/getting-started-minikf/
$ cd /somewhere
$ vagrant init arrikto/minikf
$ vagrant up
---> http://10.10.10.10
Pachyderm
Pachyderm is a versioning system and
execution environment for data and
processing pipelines. Hosted and self-hosted
options exist.
At its core is data provenance. Data is
committed to a repository and acted upon by
processors in pipelines. The results (data and
other artefacts like models) are committed
back into a repository. By design, all use of
data is traceable through pipelines. Pipelines
are described in JSON and processors are
packaged as Docker images. Pachyderm can
integrate (but not deploy) Jupyter and can
push/pull data from cloud stores (S3, etc).
Pachyderm is built on top of Kubernetes, so
can easily scale-out and run in various
clouds. Self-hosting comes with the usual
Kubernetes complexity.
15
$ cd /somewhere
$ download from (https://github.com/pachyderm/pachyderm/releases)
$ tar xfvz release_filename_linux_amd64.tar.gz
$ pachctl version --client-only
---> https://docs.pachyderm.com/latest/pachub/pachub_getting_started/
---> https://docs.pachyderm.com/latest/getting_started/beginner_tutorial/
Hosted One-Stop-Shops
16
17
Just Getting
Started
ScaleUp on
Google
Containers
and
Provenance
Hosted One-
Stop Shop
Remain
Undecided
Track Experiments
Archive Some Models
Work on Low Hanging Fruits
Try Neptune or MLFlow.
Expect Scaling?
Integrate w/ Google Cloud?
Running Kubernetes?
Try Kubeflow.
!!! Complex !!!
Want pipelines?
Want containers?
Want data provenance?
Try Pachyderm.
Deploy models?
Track data?
Need end-to-end?
Try Dataiku, SageMaker,
AzureML, DataBricks, or
Google AI Platform.
No idea?
Try Neptune or MLFlow.
Recommendations
Conclusion
18
Cases
& Value
Data
Ecosystems
Source: Bughin et al. McKinsey Global Institute, Artificial intelligence, June 2017.
Techniques
& Tools
Workflow
Integration
Open
Culture
More?
• Smartgridsenterets Webinar 28 May 2020
• https://www.youtube.com/watch?v=o5_TrwbkNiI
• https://cheleb.net/talks/2020-05-28_AIOps_Webinar.pdf
19
Teknologi for et bedre samfunn

Más contenido relacionado

Similar a 03_aiops-1.pptx

Apache ® Spark™ MLlib 2.x: How to Productionize your Machine Learning Models
Apache ® Spark™ MLlib 2.x: How to Productionize your Machine Learning ModelsApache ® Spark™ MLlib 2.x: How to Productionize your Machine Learning Models
Apache ® Spark™ MLlib 2.x: How to Productionize your Machine Learning ModelsAnyscale
 
The Eco-System of AI and How to Use It
The Eco-System of AI and How to Use ItThe Eco-System of AI and How to Use It
The Eco-System of AI and How to Use Itinside-BigData.com
 
S8277 - Introducing Krylov: AI Platform that Empowers eBay Data Science and E...
S8277 - Introducing Krylov: AI Platform that Empowers eBay Data Science and E...S8277 - Introducing Krylov: AI Platform that Empowers eBay Data Science and E...
S8277 - Introducing Krylov: AI Platform that Empowers eBay Data Science and E...Henry Saputra
 
APIdays Paris 2019 - Delivering Exceptional User Experience with REST and Gra...
APIdays Paris 2019 - Delivering Exceptional User Experience with REST and Gra...APIdays Paris 2019 - Delivering Exceptional User Experience with REST and Gra...
APIdays Paris 2019 - Delivering Exceptional User Experience with REST and Gra...apidays
 
Christine_Straub - ML Engineer.pdf
Christine_Straub - ML Engineer.pdfChristine_Straub - ML Engineer.pdf
Christine_Straub - ML Engineer.pdfChristine Straub
 
Lviv Data Science Club (Sergiy Lunyakin)
Lviv Data Science Club (Sergiy Lunyakin)Lviv Data Science Club (Sergiy Lunyakin)
Lviv Data Science Club (Sergiy Lunyakin)Lviv Startup Club
 
ExtremeEarth: Hopsworks, a data-intensive AI platform for Deep Learning with ...
ExtremeEarth: Hopsworks, a data-intensive AI platform for Deep Learning with ...ExtremeEarth: Hopsworks, a data-intensive AI platform for Deep Learning with ...
ExtremeEarth: Hopsworks, a data-intensive AI platform for Deep Learning with ...Big Data Value Association
 
Proof of Concept for Learning Analytics Interoperability
Proof of Concept for Learning Analytics InteroperabilityProof of Concept for Learning Analytics Interoperability
Proof of Concept for Learning Analytics InteroperabilityOpen Cyber University of Korea
 
The Open Data Lake Platform Brief - Data Sheets | Whitepaper
The Open Data Lake Platform Brief - Data Sheets | WhitepaperThe Open Data Lake Platform Brief - Data Sheets | Whitepaper
The Open Data Lake Platform Brief - Data Sheets | WhitepaperVasu S
 
Hydrosphere.io Platform for AI/ML Operations Automation
Hydrosphere.io Platform for AI/ML Operations AutomationHydrosphere.io Platform for AI/ML Operations Automation
Hydrosphere.io Platform for AI/ML Operations AutomationRustem Zakiev
 
Serverless machine learning architectures at Helixa
Serverless machine learning architectures at HelixaServerless machine learning architectures at Helixa
Serverless machine learning architectures at HelixaData Science Milan
 
MLflow: Infrastructure for a Complete Machine Learning Life Cycle with Mani ...
 MLflow: Infrastructure for a Complete Machine Learning Life Cycle with Mani ... MLflow: Infrastructure for a Complete Machine Learning Life Cycle with Mani ...
MLflow: Infrastructure for a Complete Machine Learning Life Cycle with Mani ...Databricks
 
Use of standards and related issues in predictive analytics
Use of standards and related issues in predictive analyticsUse of standards and related issues in predictive analytics
Use of standards and related issues in predictive analyticsPaco Nathan
 
Kubeflow: portable and scalable machine learning using Jupyterhub and Kuberne...
Kubeflow: portable and scalable machine learning using Jupyterhub and Kuberne...Kubeflow: portable and scalable machine learning using Jupyterhub and Kuberne...
Kubeflow: portable and scalable machine learning using Jupyterhub and Kuberne...Akash Tandon
 
Developing and deploying AI solutions on the cloud using Team Data Science Pr...
Developing and deploying AI solutions on the cloud using Team Data Science Pr...Developing and deploying AI solutions on the cloud using Team Data Science Pr...
Developing and deploying AI solutions on the cloud using Team Data Science Pr...Debraj GuhaThakurta
 
Metaflow: The ML Infrastructure at Netflix
Metaflow: The ML Infrastructure at NetflixMetaflow: The ML Infrastructure at Netflix
Metaflow: The ML Infrastructure at NetflixBill Liu
 
Elyra - a set of AI-centric extensions to JupyterLab Notebooks.
Elyra - a set of AI-centric extensions to JupyterLab Notebooks.Elyra - a set of AI-centric extensions to JupyterLab Notebooks.
Elyra - a set of AI-centric extensions to JupyterLab Notebooks.Luciano Resende
 

Similar a 03_aiops-1.pptx (20)

Apache ® Spark™ MLlib 2.x: How to Productionize your Machine Learning Models
Apache ® Spark™ MLlib 2.x: How to Productionize your Machine Learning ModelsApache ® Spark™ MLlib 2.x: How to Productionize your Machine Learning Models
Apache ® Spark™ MLlib 2.x: How to Productionize your Machine Learning Models
 
Sparkflows.io
Sparkflows.ioSparkflows.io
Sparkflows.io
 
MLOps in action
MLOps in actionMLOps in action
MLOps in action
 
The Eco-System of AI and How to Use It
The Eco-System of AI and How to Use ItThe Eco-System of AI and How to Use It
The Eco-System of AI and How to Use It
 
DEVOPS AND MACHINE LEARNING
DEVOPS AND MACHINE LEARNINGDEVOPS AND MACHINE LEARNING
DEVOPS AND MACHINE LEARNING
 
S8277 - Introducing Krylov: AI Platform that Empowers eBay Data Science and E...
S8277 - Introducing Krylov: AI Platform that Empowers eBay Data Science and E...S8277 - Introducing Krylov: AI Platform that Empowers eBay Data Science and E...
S8277 - Introducing Krylov: AI Platform that Empowers eBay Data Science and E...
 
APIdays Paris 2019 - Delivering Exceptional User Experience with REST and Gra...
APIdays Paris 2019 - Delivering Exceptional User Experience with REST and Gra...APIdays Paris 2019 - Delivering Exceptional User Experience with REST and Gra...
APIdays Paris 2019 - Delivering Exceptional User Experience with REST and Gra...
 
Christine_Straub - ML Engineer.pdf
Christine_Straub - ML Engineer.pdfChristine_Straub - ML Engineer.pdf
Christine_Straub - ML Engineer.pdf
 
Lviv Data Science Club (Sergiy Lunyakin)
Lviv Data Science Club (Sergiy Lunyakin)Lviv Data Science Club (Sergiy Lunyakin)
Lviv Data Science Club (Sergiy Lunyakin)
 
ExtremeEarth: Hopsworks, a data-intensive AI platform for Deep Learning with ...
ExtremeEarth: Hopsworks, a data-intensive AI platform for Deep Learning with ...ExtremeEarth: Hopsworks, a data-intensive AI platform for Deep Learning with ...
ExtremeEarth: Hopsworks, a data-intensive AI platform for Deep Learning with ...
 
Proof of Concept for Learning Analytics Interoperability
Proof of Concept for Learning Analytics InteroperabilityProof of Concept for Learning Analytics Interoperability
Proof of Concept for Learning Analytics Interoperability
 
The Open Data Lake Platform Brief - Data Sheets | Whitepaper
The Open Data Lake Platform Brief - Data Sheets | WhitepaperThe Open Data Lake Platform Brief - Data Sheets | Whitepaper
The Open Data Lake Platform Brief - Data Sheets | Whitepaper
 
Hydrosphere.io Platform for AI/ML Operations Automation
Hydrosphere.io Platform for AI/ML Operations AutomationHydrosphere.io Platform for AI/ML Operations Automation
Hydrosphere.io Platform for AI/ML Operations Automation
 
Serverless machine learning architectures at Helixa
Serverless machine learning architectures at HelixaServerless machine learning architectures at Helixa
Serverless machine learning architectures at Helixa
 
MLflow: Infrastructure for a Complete Machine Learning Life Cycle with Mani ...
 MLflow: Infrastructure for a Complete Machine Learning Life Cycle with Mani ... MLflow: Infrastructure for a Complete Machine Learning Life Cycle with Mani ...
MLflow: Infrastructure for a Complete Machine Learning Life Cycle with Mani ...
 
Use of standards and related issues in predictive analytics
Use of standards and related issues in predictive analyticsUse of standards and related issues in predictive analytics
Use of standards and related issues in predictive analytics
 
Kubeflow: portable and scalable machine learning using Jupyterhub and Kuberne...
Kubeflow: portable and scalable machine learning using Jupyterhub and Kuberne...Kubeflow: portable and scalable machine learning using Jupyterhub and Kuberne...
Kubeflow: portable and scalable machine learning using Jupyterhub and Kuberne...
 
Developing and deploying AI solutions on the cloud using Team Data Science Pr...
Developing and deploying AI solutions on the cloud using Team Data Science Pr...Developing and deploying AI solutions on the cloud using Team Data Science Pr...
Developing and deploying AI solutions on the cloud using Team Data Science Pr...
 
Metaflow: The ML Infrastructure at Netflix
Metaflow: The ML Infrastructure at NetflixMetaflow: The ML Infrastructure at Netflix
Metaflow: The ML Infrastructure at Netflix
 
Elyra - a set of AI-centric extensions to JupyterLab Notebooks.
Elyra - a set of AI-centric extensions to JupyterLab Notebooks.Elyra - a set of AI-centric extensions to JupyterLab Notebooks.
Elyra - a set of AI-centric extensions to JupyterLab Notebooks.
 

Último

Top profile Call Girls In Hubli [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hubli [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hubli [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hubli [ 7014168258 ] Call Me For Genuine Models We ...gajnagarg
 
Personal Brand Exploration ppt.- Ronnie Jones
Personal Brand  Exploration ppt.- Ronnie JonesPersonal Brand  Exploration ppt.- Ronnie Jones
Personal Brand Exploration ppt.- Ronnie Jonesjonesyde302
 
Miletti Gabriela_Vision Plan for artist Jahzel.pdf
Miletti Gabriela_Vision Plan for artist Jahzel.pdfMiletti Gabriela_Vision Plan for artist Jahzel.pdf
Miletti Gabriela_Vision Plan for artist Jahzel.pdfGabrielaMiletti
 
B.tech civil major project by Deepak Kumar
B.tech civil major project by Deepak KumarB.tech civil major project by Deepak Kumar
B.tech civil major project by Deepak KumarDeepak15CivilEngg
 
Top profile Call Girls In Varanasi [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Varanasi [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Varanasi [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Varanasi [ 7014168258 ] Call Me For Genuine Models ...gajnagarg
 
Top profile Call Girls In Shimla [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Shimla [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Shimla [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Shimla [ 7014168258 ] Call Me For Genuine Models We...gajnagarg
 
Top profile Call Girls In Ratnagiri [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Ratnagiri [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Ratnagiri [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Ratnagiri [ 7014168258 ] Call Me For Genuine Models...gajnagarg
 
<DUBAI>Abortion pills IN UAE {{+971561686603*^Mifepristone & Misoprostol in D...
<DUBAI>Abortion pills IN UAE {{+971561686603*^Mifepristone & Misoprostol in D...<DUBAI>Abortion pills IN UAE {{+971561686603*^Mifepristone & Misoprostol in D...
<DUBAI>Abortion pills IN UAE {{+971561686603*^Mifepristone & Misoprostol in D...gynedubai
 
一比一定(购)堪培拉大学毕业证(UC毕业证)成绩单学位证
一比一定(购)堪培拉大学毕业证(UC毕业证)成绩单学位证一比一定(购)堪培拉大学毕业证(UC毕业证)成绩单学位证
一比一定(购)堪培拉大学毕业证(UC毕业证)成绩单学位证eqaqen
 
Top profile Call Girls In Shivamogga [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Shivamogga [ 7014168258 ] Call Me For Genuine Model...Top profile Call Girls In Shivamogga [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Shivamogga [ 7014168258 ] Call Me For Genuine Model...nirzagarg
 
UXPA Boston 2024 Maximize the Client Consultant Relationship.pdf
UXPA Boston 2024 Maximize the Client Consultant Relationship.pdfUXPA Boston 2024 Maximize the Client Consultant Relationship.pdf
UXPA Boston 2024 Maximize the Client Consultant Relationship.pdfDan Berlin
 
B.tech Civil Engineering Major Project by Deepak Kumar ppt.pdf
B.tech Civil Engineering Major Project by Deepak Kumar ppt.pdfB.tech Civil Engineering Major Project by Deepak Kumar ppt.pdf
B.tech Civil Engineering Major Project by Deepak Kumar ppt.pdfDeepak15CivilEngg
 
Top profile Call Girls In daman [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In daman [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In daman [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In daman [ 7014168258 ] Call Me For Genuine Models We ...gajnagarg
 
如何办理堪培拉大学毕业证(UC毕业证书)成绩单原版一比一
如何办理堪培拉大学毕业证(UC毕业证书)成绩单原版一比一如何办理堪培拉大学毕业证(UC毕业证书)成绩单原版一比一
如何办理堪培拉大学毕业证(UC毕业证书)成绩单原版一比一ozave
 
一比一定(购)南昆士兰大学毕业证(USQ毕业证)成绩单学位证
一比一定(购)南昆士兰大学毕业证(USQ毕业证)成绩单学位证一比一定(购)南昆士兰大学毕业证(USQ毕业证)成绩单学位证
一比一定(购)南昆士兰大学毕业证(USQ毕业证)成绩单学位证eqaqen
 
怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制
怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制
怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制yynod
 
一比一定(购)中央昆士兰大学毕业证(CQU毕业证)成绩单学位证
一比一定(购)中央昆士兰大学毕业证(CQU毕业证)成绩单学位证一比一定(购)中央昆士兰大学毕业证(CQU毕业证)成绩单学位证
一比一定(购)中央昆士兰大学毕业证(CQU毕业证)成绩单学位证eqaqen
 
Simple, 3-Step Strategy to Improve Your Executive Presence (Even if You Don't...
Simple, 3-Step Strategy to Improve Your Executive Presence (Even if You Don't...Simple, 3-Step Strategy to Improve Your Executive Presence (Even if You Don't...
Simple, 3-Step Strategy to Improve Your Executive Presence (Even if You Don't...Angela Justice, PhD
 
Mysore Escorts Service Girl ^ 9332606886, WhatsApp Anytime Mysore
Mysore Escorts Service Girl ^ 9332606886, WhatsApp Anytime MysoreMysore Escorts Service Girl ^ 9332606886, WhatsApp Anytime Mysore
Mysore Escorts Service Girl ^ 9332606886, WhatsApp Anytime Mysoremeghakumariji156
 
怎样办理伊利诺伊大学厄巴纳-香槟分校毕业证(UIUC毕业证书)成绩单学校原版复制
怎样办理伊利诺伊大学厄巴纳-香槟分校毕业证(UIUC毕业证书)成绩单学校原版复制怎样办理伊利诺伊大学厄巴纳-香槟分校毕业证(UIUC毕业证书)成绩单学校原版复制
怎样办理伊利诺伊大学厄巴纳-香槟分校毕业证(UIUC毕业证书)成绩单学校原版复制yynod
 

Último (20)

Top profile Call Girls In Hubli [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hubli [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hubli [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hubli [ 7014168258 ] Call Me For Genuine Models We ...
 
Personal Brand Exploration ppt.- Ronnie Jones
Personal Brand  Exploration ppt.- Ronnie JonesPersonal Brand  Exploration ppt.- Ronnie Jones
Personal Brand Exploration ppt.- Ronnie Jones
 
Miletti Gabriela_Vision Plan for artist Jahzel.pdf
Miletti Gabriela_Vision Plan for artist Jahzel.pdfMiletti Gabriela_Vision Plan for artist Jahzel.pdf
Miletti Gabriela_Vision Plan for artist Jahzel.pdf
 
B.tech civil major project by Deepak Kumar
B.tech civil major project by Deepak KumarB.tech civil major project by Deepak Kumar
B.tech civil major project by Deepak Kumar
 
Top profile Call Girls In Varanasi [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Varanasi [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Varanasi [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Varanasi [ 7014168258 ] Call Me For Genuine Models ...
 
Top profile Call Girls In Shimla [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Shimla [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Shimla [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Shimla [ 7014168258 ] Call Me For Genuine Models We...
 
Top profile Call Girls In Ratnagiri [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Ratnagiri [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Ratnagiri [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Ratnagiri [ 7014168258 ] Call Me For Genuine Models...
 
<DUBAI>Abortion pills IN UAE {{+971561686603*^Mifepristone & Misoprostol in D...
<DUBAI>Abortion pills IN UAE {{+971561686603*^Mifepristone & Misoprostol in D...<DUBAI>Abortion pills IN UAE {{+971561686603*^Mifepristone & Misoprostol in D...
<DUBAI>Abortion pills IN UAE {{+971561686603*^Mifepristone & Misoprostol in D...
 
一比一定(购)堪培拉大学毕业证(UC毕业证)成绩单学位证
一比一定(购)堪培拉大学毕业证(UC毕业证)成绩单学位证一比一定(购)堪培拉大学毕业证(UC毕业证)成绩单学位证
一比一定(购)堪培拉大学毕业证(UC毕业证)成绩单学位证
 
Top profile Call Girls In Shivamogga [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Shivamogga [ 7014168258 ] Call Me For Genuine Model...Top profile Call Girls In Shivamogga [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Shivamogga [ 7014168258 ] Call Me For Genuine Model...
 
UXPA Boston 2024 Maximize the Client Consultant Relationship.pdf
UXPA Boston 2024 Maximize the Client Consultant Relationship.pdfUXPA Boston 2024 Maximize the Client Consultant Relationship.pdf
UXPA Boston 2024 Maximize the Client Consultant Relationship.pdf
 
B.tech Civil Engineering Major Project by Deepak Kumar ppt.pdf
B.tech Civil Engineering Major Project by Deepak Kumar ppt.pdfB.tech Civil Engineering Major Project by Deepak Kumar ppt.pdf
B.tech Civil Engineering Major Project by Deepak Kumar ppt.pdf
 
Top profile Call Girls In daman [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In daman [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In daman [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In daman [ 7014168258 ] Call Me For Genuine Models We ...
 
如何办理堪培拉大学毕业证(UC毕业证书)成绩单原版一比一
如何办理堪培拉大学毕业证(UC毕业证书)成绩单原版一比一如何办理堪培拉大学毕业证(UC毕业证书)成绩单原版一比一
如何办理堪培拉大学毕业证(UC毕业证书)成绩单原版一比一
 
一比一定(购)南昆士兰大学毕业证(USQ毕业证)成绩单学位证
一比一定(购)南昆士兰大学毕业证(USQ毕业证)成绩单学位证一比一定(购)南昆士兰大学毕业证(USQ毕业证)成绩单学位证
一比一定(购)南昆士兰大学毕业证(USQ毕业证)成绩单学位证
 
怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制
怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制
怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制
 
一比一定(购)中央昆士兰大学毕业证(CQU毕业证)成绩单学位证
一比一定(购)中央昆士兰大学毕业证(CQU毕业证)成绩单学位证一比一定(购)中央昆士兰大学毕业证(CQU毕业证)成绩单学位证
一比一定(购)中央昆士兰大学毕业证(CQU毕业证)成绩单学位证
 
Simple, 3-Step Strategy to Improve Your Executive Presence (Even if You Don't...
Simple, 3-Step Strategy to Improve Your Executive Presence (Even if You Don't...Simple, 3-Step Strategy to Improve Your Executive Presence (Even if You Don't...
Simple, 3-Step Strategy to Improve Your Executive Presence (Even if You Don't...
 
Mysore Escorts Service Girl ^ 9332606886, WhatsApp Anytime Mysore
Mysore Escorts Service Girl ^ 9332606886, WhatsApp Anytime MysoreMysore Escorts Service Girl ^ 9332606886, WhatsApp Anytime Mysore
Mysore Escorts Service Girl ^ 9332606886, WhatsApp Anytime Mysore
 
怎样办理伊利诺伊大学厄巴纳-香槟分校毕业证(UIUC毕业证书)成绩单学校原版复制
怎样办理伊利诺伊大学厄巴纳-香槟分校毕业证(UIUC毕业证书)成绩单学校原版复制怎样办理伊利诺伊大学厄巴纳-香槟分校毕业证(UIUC毕业证书)成绩单学校原版复制
怎样办理伊利诺伊大学厄巴纳-香槟分校毕业证(UIUC毕业证书)成绩单学校原版复制
 

03_aiops-1.pptx

  • 1. AIOPS HVORDAN VELGE UT KI PROSJEKTER OG GÅ FRA PROTOTYP TIL DRIFT Volker Hoffmann <volker.hoffmann@sintef.no> Energytics Avslutningsseminar, 10 Juni 2020
  • 2. Context: Elements on AI Transformation 2 Cases & Value Data Ecosystems Techniques & Tools Workflow Integration Open Culture Source: Bughin et al. McKinsey Global Institute, Artificial intelligence, June 2017.
  • 3. Elements on AI Transformation 3 Cases & Value Data Ecosystems Techniques & Tools Workflow Integration Open Culture
  • 4. Framework: Concept to Impact 4 Cases & Value Data Ecosystems Techniques & Tools Workflow Integration Open Culture
  • 5. 5 Business Drivers Data Science Model Versioning Model Deployment Data Pipelines MLOps & DevOps Business Development & Data Science Bring together internal and external stakeholders with data scientists. Generate ideas about processes that can be improved with data- driven insights. Set performance indicators and requirements so that results can be decision gated. Facilitated by frameworks such as Design Thinking, 10 Types of Innovation, or types of Business Process Analysis (LEAN, Six Sigma). Prepare, process, and analyze data to assess validity of ideas generated together with business stakeholders. Log and document experiments and keep stakeholders updated using performance indicators. This is a heavily iterative process as hypotheses become invalidated, are adjusted, and finally validated. Python, R, Julia For successful applications, iteratively improve models by model tuning, feature engineering, and addition of new data sources. Track and archive model versions and associated training data (data provenance). This ensures reproducibility and enables automated rollout (and rollback) when models improve (or fail). Make models available for integration into new and existing workflows. Serve models through APIs, so they are agnostic to to existing infrastructure. Automate rollout/rollback through by continuous integration and deployment (CI/CD) with performance monitoring. This ensures that best performing models are automatically deployed and that misbehaving models are rolled back. Spark, Docker, Kubernetes To exploit operational models, build robust data ingestion pipelines. This enables real- and near-time processing and continuous improvement of models. Archive all inbound data to allow data scientists and business stakeholders to develop new and iterate on existing improvements. Kafka, MQTT, Avro, Thrift Data Engineering
  • 6. 6 Business Drivers Data Science Model Versioning Model Deployment Data Pipelines MLOps & DevOps Business Development & Data Science Connect with stakeholders Low hanging fruits High-impact projects Set performance indicators Set performance targets Use Design Thinking, 10 Types of Innovation, LEAN, Six Sigma, etc Keep stakeholders updated Build prototypes Log experiments Iterate, iterate, iterate Python, R, Julia Iteratively improve models Feature engineering Hyperparameters Track and archive models Track and archive data Make it reproducible Add models to workflows Serve through APIs Monitor performance Automate deployment Automate rollback Spark, Docker, Kubernetes Build robust pipelines Operate on real-time data Archive data Kafka, MQTT, Avro, Thrift Data Engineering
  • 7. 7 Business Drivers Data Science Model Versioning Model Deployment Data Pipelines MLOps & DevOps Business Development & Data Science Connect with stakeholders Low hanging fruits High-impact projects Set performance indicators Set performance targets Use Design Thinking, 10 Types of Innovation, LEAN, Six Sigma, etc Keep stakeholders updated Build prototypes Log experiments Iterate, iterate, iterate Python, R, Julia Iteratively improve models Feature engineering Hyperparameters Track and archive models Track and archive data Make it reproducible Add models to workflows Serve through APIs Monitor performance Automate deployment Automate rollback Spark, Docker, Kubernetes Build robust pipelines Operate on real-time data Archive data Kafka, MQTT, Avro, Thrift Data Engineering
  • 8. 8 Business Drivers Data Science Model Versioning Model Deployment Data Pipelines MLOps & DevOps Business Development & Data Science Connect with stakeholders Low hanging fruits High-impact projects Set performance indicators Set performance targets Use Design Thinking, 10 Types of Innovation, LEAN, Six Sigma, etc Keep stakeholders updated Build prototypes Log experiments Iterate, iterate, iterate Python, R, Julia Iteratively improve models Feature engineering Hyperparameters Track and archive models Track and archive data Make it reproducible Add models to workflows Serve through APIs Monitor performance Automate deployment Automate rollback Spark, Docker, Kubernetes Build robust pipelines Operate on real-time data Archive data Kafka, MQTT, Avro, Thrift Data Engineering
  • 9. 9 Business Drivers Data Science Model Versioning Model Deployment Data Pipelines MLOps & DevOps Business Development & Data Science Connect with stakeholders Low hanging fruits High-impact projects Set performance indicators Set performance targets Use Design Thinking, 10 Types of Innovation, LEAN, Six Sigma, etc Keep stakeholders updated Build prototypes Log experiments Iterate, iterate, iterate Python, R, Julia Iteratively improve models Feature engineering Hyperparameters Track and archive models Track and archive data Make it reproducible Add models to workflows Serve through APIs Monitor performance Automate deployment Automate rollback Spark, Docker, Kubernetes Build robust pipelines Operate on real-time data Archive data Kafka, MQTT, Avro, Thrift Data Engineering
  • 10. 10 Business Drivers Data Science Model Versioning Model Deployment Data Pipelines MLOps & DevOps Business Development & Data Science Connect with stakeholders Low hanging fruits High-impact projects Set performance indicators Set performance targets Use Design Thinking, 10 Types of Innovation, LEAN, Six Sigma, etc Keep stakeholders updated Build prototypes Log experiments Iterate, iterate, iterate Python, R, Julia Iteratively improve models Feature engineering Hyperparameters Track and archive models Track and archive data Make it reproducible Add models to workflows Serve through APIs Monitor performance Automate deployment Automate rollback Spark, Docker, Kubernetes Build robust pipelines Operate on real-time data Archive data Kafka, MQTT, Avro, Thrift Data Engineering
  • 11. Tools to Speed You Up 11 Cases & Value Data Ecosystems Techniques & Tools Workflow Integration Open Culture
  • 12. Neptune Neptune is a tracker for experiments with focus on Python. It is a hosted service. Experiments are tracked by using library hooks to register (model) parameters, evaluation results, and upload artifacts (such as models, hashes of training data, or even code). The library can track hardware usage and experiment progress. The results can be analyzed and compared on a website. There are also collaborative options. Neptune has integrations with Jupyter notebooks, various ML libraries, visualizers (HiFlow, TensorBoard), other trackers (MLFlow), and external offerings (Amazon Sagemaker). They provide an API to query results from experiment. This can be used to feed CI/CD pipelines for model deployment. 12 $ conda create --name neptune python=3.6 $ conda activate neptune $ conda install -c conda-forge neptune-client $ cd /somewhere ---> https://ui.neptune.ai/ ---> Create Account, Log In, “Getting Started”
  • 13. MLFlow MLFlow is an experiment tracker and generic model server. It can be self-hosted. Experiments are tracked by using library hooks to register (model) parameters, evaluation results, and upload artifacts (such as models, hashes of training data, or even code). Artifacts can be logged to local, remote, or cloud storage (S3, GFS, etc). Results can be analyzed through a web UI and CSV export is available. Models are packaged as a wrapper around the underlying format (Sklearn, XGBoost, Torch, etc). They can be pushed to Spark for batch inference or served through REST. There are CLI, Python, R, Java, and REST APIs for further integration with CI/CD pipelines. Models can be pushed to cloud services (SageMaker, AzureML, ...). 13 $ conda create --name mlflow python=3.6 $ conda activate mlflow $ conda install -c conda-forge mlflow $ cd /somewhere $ mlflow ui ---> http://localhost:5000 ---> https://mlflow.org/docs/latest/quickstart.html
  • 14. Kubeflow Kubeflow is essentially a self-hosted version of the Google AI platform. It uses Kubernetes to abstract away infrastructure. Kubeflow can deploy Jupyter notebooks, run pipelines for data processing and model training (scheduled, on-demand), organize runs, archive models and other artifacts, and expose models through endpoints. Pipelines are compute graphs and are described in Python with a DSL. Their components are wrapped as Docker images. It integrates with GCP so it can elastically scale to the cloud compute and storage (e.g., distributed model training). It also integrates with offerings such as BigQuery or Dataproc. The solution is heavy and complex but enables rapid scale-out. It is especially applicable if infrastructure is already managed through Kubernetes. 14 https://www.kubeflow.org/docs/started/workstation/getting-started-minikf/ $ cd /somewhere $ vagrant init arrikto/minikf $ vagrant up ---> http://10.10.10.10
  • 15. Pachyderm Pachyderm is a versioning system and execution environment for data and processing pipelines. Hosted and self-hosted options exist. At its core is data provenance. Data is committed to a repository and acted upon by processors in pipelines. The results (data and other artefacts like models) are committed back into a repository. By design, all use of data is traceable through pipelines. Pipelines are described in JSON and processors are packaged as Docker images. Pachyderm can integrate (but not deploy) Jupyter and can push/pull data from cloud stores (S3, etc). Pachyderm is built on top of Kubernetes, so can easily scale-out and run in various clouds. Self-hosting comes with the usual Kubernetes complexity. 15 $ cd /somewhere $ download from (https://github.com/pachyderm/pachyderm/releases) $ tar xfvz release_filename_linux_amd64.tar.gz $ pachctl version --client-only ---> https://docs.pachyderm.com/latest/pachub/pachub_getting_started/ ---> https://docs.pachyderm.com/latest/getting_started/beginner_tutorial/
  • 17. 17 Just Getting Started ScaleUp on Google Containers and Provenance Hosted One- Stop Shop Remain Undecided Track Experiments Archive Some Models Work on Low Hanging Fruits Try Neptune or MLFlow. Expect Scaling? Integrate w/ Google Cloud? Running Kubernetes? Try Kubeflow. !!! Complex !!! Want pipelines? Want containers? Want data provenance? Try Pachyderm. Deploy models? Track data? Need end-to-end? Try Dataiku, SageMaker, AzureML, DataBricks, or Google AI Platform. No idea? Try Neptune or MLFlow. Recommendations
  • 18. Conclusion 18 Cases & Value Data Ecosystems Source: Bughin et al. McKinsey Global Institute, Artificial intelligence, June 2017. Techniques & Tools Workflow Integration Open Culture
  • 19. More? • Smartgridsenterets Webinar 28 May 2020 • https://www.youtube.com/watch?v=o5_TrwbkNiI • https://cheleb.net/talks/2020-05-28_AIOps_Webinar.pdf 19
  • 20. Teknologi for et bedre samfunn

Notas del editor

  1. Bildet illustrerer:  ·        bredden  i SINTEFs ekspertise, fra havrom til verdensrom. ·        hvilke områder og bransjer vi jobber innen for å realisere visjonen Teknologi for et bedre samfunn.   Bildestilen er basert på stikkordene fremtidsrettet, teknologi og norsk natur (naturressurser). SINTEFs visuelle univers er utviklet for SINTEF av Headspin Productions AS.
  2. https://www.mckinsey.com/business-functions/mckinsey-analytics/our-insights/how-artificial-intelligence-can-deliver-real-value-to-companies
  3. https://www.mckinsey.com/business-functions/mckinsey-analytics/our-insights/how-artificial-intelligence-can-deliver-real-value-to-companies