SlideShare a Scribd company logo
ModelDB: A system
to manage machine
learning models
Manasi Vartak
PhD Student, MIT DB Group
People
Manasi Vartak
PhD student, MIT
Srinidhi Viswanathan
MEng, MIT
Samuel Madden
Faculty, MIT
Matei Zaharia
Faculty, Stanford
Harihar Subramanyam
MEng, MIT
Wei-En Lee
MEng student, MIT
Building a credit
recommendation algorithm
Profession Credit History Risk of Default
Politician Reasonable 0.3
Struggling
artist
Poor 0.7
Investor
Has more
money than our
company
0.0
… … … …
Barack
Obama
Lindsay
Lohan
Warren
Buffet
Model 1
Accuracy: 62%
Model 1
Accuracy: 58%
Model 2
RandomForestClassifier
val udf1: (Int => Int) = (delayed..)
df.withColumn(“timesDelayed”, udf1)
Accuracy: 63%
RandomForestClassifier
df.withColumn(“timesDelayed”, udf1)
.withColumn(“percentPaid”, udf2)
val lrGrid = new ParamGridBuilder()
.addGrid(rf.maxDepth, Array(5, 10, 15))
.addGrid(rf.numTrees, Array(50, 100))
Model 5
credit-default-clean.csv
df.withColumn(“timesDelayed”, udf1)
.withColumn(“percentPaid”, udf2)
.withColumn(“creditUsed”, udf3)
…
val lrGrid = new ParamGridBuilder()
.addGrid(lr.elasticNetParam, Array(0.01, 0.1, 0.5, 0.7))
val scaler = new StandardScaler()
.setInputCol(“features”)
…
val labelIndexer1 = new LabelIndexer()
val labelIndexer2 = new LabelIndexer()
…
Model 50
val udf1: (Int => Int) = (delayed..)
val udf2: (String, Int) = …
credit-default-clean.csv
Why is this a problem?
Why is this a problem?
• No record of model history
Did my colleague do that
already?
Why is this a problem?
• No record of model history
• Insights lost along the way
Did my colleague do that
already?
How did normalization
affect my ROC?
Why is this a problem?
• No record of model history
• Insights lost along the way
• Difficult to reproduce results
Did my colleague do that
already?
How did normalization
affect my ROC?
What params did I use?
Why is this a problem?
• No record of model history
• Insights lost along the way
• Difficult to reproduce results
• Cannot search for or query models
Did my colleague do that
already?
How did normalization
affect my ROC?
Where’s the LR
model I tried last
week with featureX?
What params did I use?
Why is this a problem?
• No record of model history
• Insights lost along the way
• Difficult to reproduce results
• Cannot search for or query models
• Difficult to collaborate
Did my colleague do that
already?
How did normalization
affect my ROC?
How does someone review
your model?
Where’s the LR
model I tried last
week with featureX?
What params did I use?
Requirements from model
management tool
Requirements from model
management tool
• Experiment tracking
Requirements from model
management tool
• Experiment tracking
• Versioning
Requirements from model
management tool
• Experiment tracking
• Versioning
• Reproducibility
Requirements from model
management tool
• Experiment tracking
• Versioning
• Reproducibility
• Comparisons, queries, search
Requirements from model
management tool
• Experiment tracking
• Versioning
• Reproducibility
• Comparisons, queries, search
• Collaboration
Requirements from model
management tool
• Experiment tracking
• Versioning
• Reproducibility
• Comparisons, queries, search
• Collaboration
*With minimal effort
ModelDB: a system to
manage machine
learning models
https://github.com/mitdbg/modeldb
http://modeldb.csail.mit.edu
ModelDB: model
management system
ModelDB: model
management system
Ingest models,
metadata
ModelDB: model
management system
Model, Pipeline
Storage
Versioning
Ingest models,
metadata
ModelDB: model
management system
Model, Pipeline
Storage
Versioning
Query
Ingest models,
metadata
ModelDB: model
management system
Model, Pipeline
Storage
Versioning
Query
Ingest models,
metadata
Collaboration,
Reproducibility
User quotes
“I should have had this in my self-driving cars class; it
would have made things so much easier”
“…it can really help with reproducibility … and
collaboration in multi-person teams…”
“I used it to track models for a research project; it
was so simple”
Demo
ModelDB Architecture &
Design Decisions
ModelDB Architecture &
Design Decisions
ModelDB Architecture &
Design Decisions
1. Support for diverse
languages and environments
ModelDB Architecture &
Design Decisions
1. Support for diverse
languages and environments
2. Minimal changes to
existing workflows
ModelDB Architecture &
Design Decisions
1. Support for diverse
languages and environments
2. Minimal changes to
existing workflows
3. Rich visual interface
ModelDB Architecture &
Design Decisions
1. Support for diverse
languages and environments
2. Minimal changes to
existing workflows
3. Rich visual interface
4. Support for complex
queries
“Oh, but why not git?”
• All code treated equal
• Some elements are special: data sources,
parameters, metrics, models
• Difficult to tease that out
• No semantics, so can’t run interesting queries
Requirements from model
management tool
Requirements from model
management tool
• Experiment tracking
Requirements from model
management tool
• Experiment tracking
• Versioning
Requirements from model
management tool
• Experiment tracking
• Versioning
• Reproducibility
Requirements from model
management tool
• Experiment tracking
• Versioning
• Reproducibility
• Comparisons, queries, search
Requirements from model
management tool
• Experiment tracking
• Versioning
• Reproducibility
• Comparisons, queries, search
• Collaboration
Requirements from model
management tool
• Experiment tracking
• Versioning
• Reproducibility
• Comparisons, queries, search
• Collaboration
*With minimal effort
ModelDB Features
(currently available)
• Experiment tracking
• Versioning
• Reproducibility
• Comparisons, queries, search
• Collaboration
ModelDB Features
(currently available)
• Experiment tracking
• Versioning
• Reproducibility
• Comparisons, queries, search
• Collaboration
Log models, params, pipelines
etc. via ModelDB API
ModelDB Features
(currently available)
• Experiment tracking
• Versioning
• Reproducibility
• Comparisons, queries, search
• Collaboration
Log models, params, pipelines
etc. via ModelDB API
Every modeling run = version
ModelDB Features
(currently available)
• Experiment tracking
• Versioning
• Reproducibility
• Comparisons, queries, search
• Collaboration
Log models, params, pipelines
etc. via ModelDB API
All pipeline details, params
logged
Every modeling run = version
ModelDB Features
(currently available)
• Experiment tracking
• Versioning
• Reproducibility
• Comparisons, queries, search
• Collaboration
Log models, params, pipelines
etc. via ModelDB API
Model search, query,
comparison via frontend
All pipeline details, params
logged
Every modeling run = version
ModelDB Features
(currently available)
• Experiment tracking
• Versioning
• Reproducibility
• Comparisons, queries, search
• Collaboration
Log models, params, pipelines
etc. via ModelDB API
Model search, query,
comparison via frontend
Central repository of models
Review models, annotate
All pipeline details, params
logged
Every modeling run = version
ModelDB Features
(ongoing)
ModelDB Features
(ongoing)
• Unified Querying of Modeling Artifacts
ModelDB Features
(ongoing)
• Unified Querying of Modeling Artifacts
Base data, intermediates,
models, predictions, metadata
ModelDB Features
(ongoing)
• Unified Querying of Modeling Artifacts
Base data, intermediates,
models, predictions, metadata
“How did the GBDTs do on married customers who
are interested in gardening?”
ModelDB Features
(ongoing)
• Unified Querying of Modeling Artifacts
Base data, intermediates,
models, predictions, metadata
“How did the GBDTs do on married customers who
are interested in gardening?”
Base
Data
is_married=T
ModelDB Features
(ongoing)
• Unified Querying of Modeling Artifacts
Base data, intermediates,
models, predictions, metadata
“How did the GBDTs do on married customers who
are interested in gardening?”
Base
Data
is_married=T
Intermediates
gardening=T
ModelDB Features
(ongoing)
• Unified Querying of Modeling Artifacts
Base data, intermediates,
models, predictions, metadata
“How did the GBDTs do on married customers who
are interested in gardening?”
Base
Data
is_married=T
Intermediates
gardening=T
Metadata
type=
GBDT
Models
ids={..}
ModelDB Features
(ongoing)
• Unified Querying of Modeling Artifacts
Base data, intermediates,
models, predictions, metadata
“How did the GBDTs do on married customers who
are interested in gardening?”
Base
Data
is_married=T
Intermediates
gardening=T
Predictions
accuracy(…)
Metadata
type=
GBDT
Models
ids={..}
ModelDB Features
(ongoing)
• Unified Querying of Modeling Artifacts
Base data, intermediates,
models, predictions, metadata
“How did the GBDTs do on married customers who
are interested in gardening?”
Base
Data
is_married=T
Intermediates
gardening=T
Predictions
accuracy(…)
Metadata
type=
GBDT
Models
ids={..}
What query language?
How to persist data?
ModelDB Features
(ongoing)
ModelDB Features
(ongoing)
• Mining data in ModelDB
ModelDB Features
(ongoing)
• Mining data in ModelDB
Model Features Params Metric
M13 X3,X9... l1=0.3 0.63
M22 X1,X4,X7 l2=0.7 0.8
M34 X11,X13 l1=0.7 0.55
… … … …
ModelDB Features
(ongoing)
• Mining data in ModelDB
Given model history, what
should we try next?
Bayesian Modeling/AutoML
Model Features Params Metric
M13 X3,X9... l1=0.3 0.63
M22 X1,X4,X7 l2=0.7 0.8
M34 X11,X13 l1=0.7 0.55
… … … …
ModelDB Features
(ongoing)
• Mining data in ModelDB
• Full model lifecycle management
Given model history, what
should we try next?
Bayesian Modeling/AutoML
Model Features Params Metric
M13 X3,X9... l1=0.3 0.63
M22 X1,X4,X7 l2=0.7 0.8
M34 X11,X13 l1=0.7 0.55
… … … …
ModelDB Features
(ongoing)
• Mining data in ModelDB
• Full model lifecycle management
Given model history, what
should we try next?
Bayesian Modeling/AutoML
Model Features Params Metric
M13 X3,X9... l1=0.3 0.63
M22 X1,X4,X7 l2=0.7 0.8
M34 X11,X13 l1=0.7 0.55
… … … …
ModelDB Features
(ongoing)
• Mining data in ModelDB
• Full model lifecycle management
Given model history, what
should we try next?
Bayesian Modeling/AutoML
Model performance degrades
Retrain model over time
Model Features Params Metric
M13 X3,X9... l1=0.3 0.63
M22 X1,X4,X7 l2=0.7 0.8
M34 X11,X13 l1=0.7 0.55
… … … …
ModelDB available now!
https://github.com/mitdbg/modeldb
*MIT License
ModelDB available now!
ModelDB available now!
• Download, try it out!
ModelDB available now!
• Download, try it out!
ModelDB available now!
• Download, try it out!
• Tell us what you think; what can we do better?
ModelDB available now!
• Download, try it out!
• Tell us what you think; what can we do better?
• Contribute! (see Issues on repo for some ideas)
ModelDB: a system to
manage machine
learning models
mvartak@csail.mit.edu | @DataCereal
http://modeldb.csail.mit.edu
*Icons from FlatIcon

More Related Content

PPTX
Spark MLlib - Training Material
PDF
MLlib: Spark's Machine Learning Library
PDF
Using Crowdsourced Images to Create Image Recognition Models with Analytics Z...
PPTX
Machine Learning With Spark
PPTX
AI from your data lake: Using Solr for analytics
PDF
Scalable Collaborative Filtering Recommendation Algorithms on Apache Spark
PPTX
MLlib and Machine Learning on Spark
PPTX
Graph Based Machine Learning on Relational Data
Spark MLlib - Training Material
MLlib: Spark's Machine Learning Library
Using Crowdsourced Images to Create Image Recognition Models with Analytics Z...
Machine Learning With Spark
AI from your data lake: Using Solr for analytics
Scalable Collaborative Filtering Recommendation Algorithms on Apache Spark
MLlib and Machine Learning on Spark
Graph Based Machine Learning on Relational Data

What's hot (20)

PDF
Machine Learning with Spark MLlib
PPTX
Sparking Science up with Research Recommendations by Maya Hristakeva
PDF
Distributed End-to-End Drug Similarity Analytics and Visualization Workflow w...
PDF
Processing Terabyte-Scale Genomics Datasets with ADAM: Spark Summit East talk...
PDF
SDEC2011 Mahout - the what, the how and the why
PPTX
Apache Spark MLlib
PPTX
Joseph Bradley, Software Engineer, Databricks Inc. at MLconf SEA - 5/01/15
PDF
From discovering to trusting data
PDF
How to Integrate Spark MLlib and Apache Solr to Build Real-Time Entity Type R...
PDF
Machine learning pipeline with spark ml
PDF
Not your Father's Database: Not Your Father’s Database: How to Use Apache® Sp...
PDF
Distributed ML in Apache Spark
PPTX
Seattle Scalability Mahout
PDF
Porting R Models into Scala Spark
PDF
Machine Learning for (JVM) Developers
PPTX
Large Scale Machine learning with Spark
PPTX
AMP Camp 5 Intro
PDF
H2O World - H2O Rains with Databricks Cloud
PDF
The Quest for an Open Source Data Science Platform
PDF
Disrupting Data Discovery
Machine Learning with Spark MLlib
Sparking Science up with Research Recommendations by Maya Hristakeva
Distributed End-to-End Drug Similarity Analytics and Visualization Workflow w...
Processing Terabyte-Scale Genomics Datasets with ADAM: Spark Summit East talk...
SDEC2011 Mahout - the what, the how and the why
Apache Spark MLlib
Joseph Bradley, Software Engineer, Databricks Inc. at MLconf SEA - 5/01/15
From discovering to trusting data
How to Integrate Spark MLlib and Apache Solr to Build Real-Time Entity Type R...
Machine learning pipeline with spark ml
Not your Father's Database: Not Your Father’s Database: How to Use Apache® Sp...
Distributed ML in Apache Spark
Seattle Scalability Mahout
Porting R Models into Scala Spark
Machine Learning for (JVM) Developers
Large Scale Machine learning with Spark
AMP Camp 5 Intro
H2O World - H2O Rains with Databricks Cloud
The Quest for an Open Source Data Science Platform
Disrupting Data Discovery
Ad

Viewers also liked (20)

PDF
Spark + Flashblade: Spark Summit East talk by Brian Gold
PDF
Opaque: A Data Analytics Platform with Strong Security: Spark Summit East tal...
PDF
Finding Needles in Genomic Haystacks with “Wide” Random Forest: Spark Summit ...
PDF
Data-Driven Water Security with Bluemix Apache Spark Service: Spark Summit Ea...
PDF
Engineering Fast Indexes for Big-Data Applications: Spark Summit East talk by...
PDF
Cornami Accelerates Performance on SPARK: Spark Summit East talk by Paul Master
PDF
Solving Real Problems with Apache Spark: Archiving, E-Discovery, and Supervis...
PDF
Optimizing Spark Deployments for Containers: Isolation, Safety, and Performan...
PDF
Kerberizing Spark: Spark Summit East talk by Abel Rincon and Jorge Lopez-Malla
PDF
Analytics at the Real-Time Speed of Business: Spark Summit East talk by Manis...
PDF
Spark Autotuning: Spark Summit East talk by Lawrence Spracklen
PDF
Effective Spark with Alluxio: Spark Summit East talk by Gene Pang and Haoyuan...
PDF
Using Spark and Riak for IoT Apps—Patterns and Anti-Patterns: Spark Summit Ea...
PDF
Realtime Analytical Query Processing and Predictive Model Building on High Di...
PDF
Building Deep Learning Powered Big Data: Spark Summit East talk by Jiao Wang ...
PDF
Auto Scaling Systems With Elastic Spark Streaming: Spark Summit East talk by ...
PDF
Using SparkML to Power a DSaaS (Data Science as a Service): Spark Summit East...
PDF
Improving Python and Spark Performance and Interoperability: Spark Summit Eas...
PDF
Sparkler—Crawler on Apache Spark: Spark Summit East talk by Karanjeet Singh a...
PDF
Using SparkR to Scale Data Science Applications in Production. Lessons from t...
Spark + Flashblade: Spark Summit East talk by Brian Gold
Opaque: A Data Analytics Platform with Strong Security: Spark Summit East tal...
Finding Needles in Genomic Haystacks with “Wide” Random Forest: Spark Summit ...
Data-Driven Water Security with Bluemix Apache Spark Service: Spark Summit Ea...
Engineering Fast Indexes for Big-Data Applications: Spark Summit East talk by...
Cornami Accelerates Performance on SPARK: Spark Summit East talk by Paul Master
Solving Real Problems with Apache Spark: Archiving, E-Discovery, and Supervis...
Optimizing Spark Deployments for Containers: Isolation, Safety, and Performan...
Kerberizing Spark: Spark Summit East talk by Abel Rincon and Jorge Lopez-Malla
Analytics at the Real-Time Speed of Business: Spark Summit East talk by Manis...
Spark Autotuning: Spark Summit East talk by Lawrence Spracklen
Effective Spark with Alluxio: Spark Summit East talk by Gene Pang and Haoyuan...
Using Spark and Riak for IoT Apps—Patterns and Anti-Patterns: Spark Summit Ea...
Realtime Analytical Query Processing and Predictive Model Building on High Di...
Building Deep Learning Powered Big Data: Spark Summit East talk by Jiao Wang ...
Auto Scaling Systems With Elastic Spark Streaming: Spark Summit East talk by ...
Using SparkML to Power a DSaaS (Data Science as a Service): Spark Summit East...
Improving Python and Spark Performance and Interoperability: Spark Summit Eas...
Sparkler—Crawler on Apache Spark: Spark Summit East talk by Karanjeet Singh a...
Using SparkR to Scale Data Science Applications in Production. Lessons from t...
Ad

Similar to ModelDB: A System to Manage Machine Learning Models: Spark Summit East talk by Manasi Vartak (20)

PDF
ModelDB: A System to Manage Machine Learning Models: Spark Summit East talk b...
PPTX
Recommender System Using AZURE ML
PDF
Modeling at Scale: SigOpt at TWIMLcon 2019
PDF
Mahout Tutorial and Hands-on (version 2015)
PDF
Taking the Pain out of Data Science - RecSys Machine Learning Framework Over ...
PPTX
Building High Available and Scalable Machine Learning Applications
KEY
An Evening with MongoDB - Orlando: Welcome and Keynote
PDF
Collaborative Filtering and Recommender Systems By Navisro Analytics
PDF
Modern Perspectives on Recommender Systems and their Applications in Mendeley
PPTX
BESDUI: Benchmark for End-User Structured Data User Interfaces
PDF
Agile experiments in Machine Learning with F#
PDF
1440 track 2 boire_using our laptop
PDF
Automated Hyperparameter Tuning, Scaling and Tracking
PPTX
Measuring Impact: Towards a data citation metric
PDF
Data Discovery and Metadata
PDF
Modern Perspectives on Recommender Systems and their Applications in Mendeley
PDF
From Labelling Open data images to building a private recommender system
PPTX
ML Ops.pptx
PPTX
Machine Learning With ML.NET
PDF
Recsys2016 Tutorial by Xavier and Deepak
ModelDB: A System to Manage Machine Learning Models: Spark Summit East talk b...
Recommender System Using AZURE ML
Modeling at Scale: SigOpt at TWIMLcon 2019
Mahout Tutorial and Hands-on (version 2015)
Taking the Pain out of Data Science - RecSys Machine Learning Framework Over ...
Building High Available and Scalable Machine Learning Applications
An Evening with MongoDB - Orlando: Welcome and Keynote
Collaborative Filtering and Recommender Systems By Navisro Analytics
Modern Perspectives on Recommender Systems and their Applications in Mendeley
BESDUI: Benchmark for End-User Structured Data User Interfaces
Agile experiments in Machine Learning with F#
1440 track 2 boire_using our laptop
Automated Hyperparameter Tuning, Scaling and Tracking
Measuring Impact: Towards a data citation metric
Data Discovery and Metadata
Modern Perspectives on Recommender Systems and their Applications in Mendeley
From Labelling Open data images to building a private recommender system
ML Ops.pptx
Machine Learning With ML.NET
Recsys2016 Tutorial by Xavier and Deepak

More from Spark Summit (20)

PDF
FPGA-Based Acceleration Architecture for Spark SQL Qi Xie and Quanfu Wang
PDF
VEGAS: The Missing Matplotlib for Scala/Apache Spark with DB Tsai and Roger M...
PDF
Apache Spark Structured Streaming Helps Smart Manufacturing with Xiaochang Wu
PDF
Improving Traffic Prediction Using Weather Data with Ramya Raghavendra
PDF
A Tale of Two Graph Frameworks on Spark: GraphFrames and Tinkerpop OLAP Artem...
PDF
No More Cumbersomeness: Automatic Predictive Modeling on Apache Spark Marcin ...
PDF
Apache Spark and Tensorflow as a Service with Jim Dowling
PDF
Apache Spark and Tensorflow as a Service with Jim Dowling
PDF
MMLSpark: Lessons from Building a SparkML-Compatible Machine Learning Library...
PDF
Next CERN Accelerator Logging Service with Jakub Wozniak
PDF
Powering a Startup with Apache Spark with Kevin Kim
PDF
Improving Traffic Prediction Using Weather Datawith Ramya Raghavendra
PDF
Hiding Apache Spark Complexity for Fast Prototyping of Big Data Applications—...
PDF
How Nielsen Utilized Databricks for Large-Scale Research and Development with...
PDF
Spline: Apache Spark Lineage not Only for the Banking Industry with Marek Nov...
PDF
Goal Based Data Production with Sim Simeonov
PDF
Preventing Revenue Leakage and Monitoring Distributed Systems with Machine Le...
PDF
Getting Ready to Use Redis with Apache Spark with Dvir Volk
PDF
Deduplication and Author-Disambiguation of Streaming Records via Supervised M...
PDF
MatFast: In-Memory Distributed Matrix Computation Processing and Optimization...
FPGA-Based Acceleration Architecture for Spark SQL Qi Xie and Quanfu Wang
VEGAS: The Missing Matplotlib for Scala/Apache Spark with DB Tsai and Roger M...
Apache Spark Structured Streaming Helps Smart Manufacturing with Xiaochang Wu
Improving Traffic Prediction Using Weather Data with Ramya Raghavendra
A Tale of Two Graph Frameworks on Spark: GraphFrames and Tinkerpop OLAP Artem...
No More Cumbersomeness: Automatic Predictive Modeling on Apache Spark Marcin ...
Apache Spark and Tensorflow as a Service with Jim Dowling
Apache Spark and Tensorflow as a Service with Jim Dowling
MMLSpark: Lessons from Building a SparkML-Compatible Machine Learning Library...
Next CERN Accelerator Logging Service with Jakub Wozniak
Powering a Startup with Apache Spark with Kevin Kim
Improving Traffic Prediction Using Weather Datawith Ramya Raghavendra
Hiding Apache Spark Complexity for Fast Prototyping of Big Data Applications—...
How Nielsen Utilized Databricks for Large-Scale Research and Development with...
Spline: Apache Spark Lineage not Only for the Banking Industry with Marek Nov...
Goal Based Data Production with Sim Simeonov
Preventing Revenue Leakage and Monitoring Distributed Systems with Machine Le...
Getting Ready to Use Redis with Apache Spark with Dvir Volk
Deduplication and Author-Disambiguation of Streaming Records via Supervised M...
MatFast: In-Memory Distributed Matrix Computation Processing and Optimization...

Recently uploaded (20)

PDF
Microsoft 365 products and services descrption
PPTX
Copy of 16 Timeline & Flowchart Templates – HubSpot.pptx
PPTX
Pilar Kemerdekaan dan Identi Bangsa.pptx
PPT
DU, AIS, Big Data and Data Analytics.ppt
PPTX
IBA_Chapter_11_Slides_Final_Accessible.pptx
PPTX
SAP 2 completion done . PRESENTATION.pptx
PDF
Tetra Pak Index 2023 - The future of health and nutrition - Full report.pdf
DOCX
Factor Analysis Word Document Presentation
PPTX
A Complete Guide to Streamlining Business Processes
PDF
Navigating the Thai Supplements Landscape.pdf
PDF
Introduction to the R Programming Language
PPTX
Market Analysis -202507- Wind-Solar+Hybrid+Street+Lights+for+the+North+Amer...
PPTX
QUANTUM_COMPUTING_AND_ITS_POTENTIAL_APPLICATIONS[2].pptx
PPTX
Microsoft-Fabric-Unifying-Analytics-for-the-Modern-Enterprise Solution.pptx
PDF
Jean-Georges Perrin - Spark in Action, Second Edition (2020, Manning Publicat...
PPTX
STERILIZATION AND DISINFECTION-1.ppthhhbx
PDF
Data Engineering Interview Questions & Answers Cloud Data Stacks (AWS, Azure,...
PPT
lectureusjsjdhdsjjshdshshddhdhddhhd1.ppt
PPT
ISS -ESG Data flows What is ESG and HowHow
PPTX
IMPACT OF LANDSLIDE.....................
Microsoft 365 products and services descrption
Copy of 16 Timeline & Flowchart Templates – HubSpot.pptx
Pilar Kemerdekaan dan Identi Bangsa.pptx
DU, AIS, Big Data and Data Analytics.ppt
IBA_Chapter_11_Slides_Final_Accessible.pptx
SAP 2 completion done . PRESENTATION.pptx
Tetra Pak Index 2023 - The future of health and nutrition - Full report.pdf
Factor Analysis Word Document Presentation
A Complete Guide to Streamlining Business Processes
Navigating the Thai Supplements Landscape.pdf
Introduction to the R Programming Language
Market Analysis -202507- Wind-Solar+Hybrid+Street+Lights+for+the+North+Amer...
QUANTUM_COMPUTING_AND_ITS_POTENTIAL_APPLICATIONS[2].pptx
Microsoft-Fabric-Unifying-Analytics-for-the-Modern-Enterprise Solution.pptx
Jean-Georges Perrin - Spark in Action, Second Edition (2020, Manning Publicat...
STERILIZATION AND DISINFECTION-1.ppthhhbx
Data Engineering Interview Questions & Answers Cloud Data Stacks (AWS, Azure,...
lectureusjsjdhdsjjshdshshddhdhddhhd1.ppt
ISS -ESG Data flows What is ESG and HowHow
IMPACT OF LANDSLIDE.....................

ModelDB: A System to Manage Machine Learning Models: Spark Summit East talk by Manasi Vartak