SlideShare une entreprise Scribd logo
1  sur  74
Télécharger pour lire hors ligne
Uncertainty in
Deep Learning
Roberto Silveira
Hello!
I am Roberto Silveira
EE engineer, ML enthusiast
rsilveira79@gmail.com
@rsilveira79
Why do we care about uncertainty?
Why do we care about uncertainty?
Cat?
Dog?
???
Why do we care about uncertainty?
Why do we care about uncertainty?
Why do we care about uncertainty?
A note on
SOFTMAX
Source: Uncertainty in Deep Learning - PhD Thesis
(Gal, 2016)
Language of
uncertainty
Types of Uncertainty
Source: Uncertainty in Deep Learning
(Yarin Gal, 2016)
Model uncertainty (epistemic, reducible) = uncertainty in model (either model
parameters or model structure) → more data helps
"epistemic" → Greeg "episteme" = knowledge
Types of Uncertainty
Source: Uncertainty in Deep Learning
(Yarin Gal, 2016)
Aleatoric uncertainty (stochastic, irreducible) = uncertainty in data (noise) →
more data doesn't help
"Aleatoric" → Latin "aleator" = “dice player’s"
Can be further divided:
● Homoscedastic → uncertainty is same for all inputs
● Heteroscedastic → observation (uncertainty) can vary with input X
Frequentist vs Bayesian view of the world
Frequentist vs Bayesian view of the world (2)
Frequentist
● Data is considered random
● Model parameters are fixed
● Probabilities are
fundamentally related to
frequencies of events
Source:
https://github.com/fonnesbeck/intro_stat_modeling_2017
Bayesian
● Data is considered fixed
● Model parameters are
"random" (conditioned to
observations - sampled from
distribution)
● Probabilities are
fundamentally related to their
own knowledge about an event
Bayes Inference 101
Source:
https://github.com/fonnesbeck/intro_stat_modeling_2017
Bayes Inference 101
Source:
https://github.com/fonnesbeck/intro_stat_modeling_2017
Posterior Probability → probability of model parameters given
the data
Bayes Inference 101
Source:
https://github.com/fonnesbeck/intro_stat_modeling_2017
Likelihood of observations → information on the observed data ~
proportional to likelihood in frequentist approach
Bayes Inference 101
Source:
https://github.com/fonnesbeck/intro_stat_modeling_2017
Prior Probability → what is known about the model before
observing the data
Bayes Inference 101
Source:
https://github.com/fonnesbeck/intro_stat_modeling_2017
Normalizing Constant → model evidence,
usually not considered in bayesian inference
Further reading
Source: Frequentism and Bayesianism: A
Python-driven Primer (Jake VanderPlas, 2014)
Gaussian
Processes
Johann Carl Friedrich Gauss
(1777 - 1855)
Gaussian Basics (1)
Source: YouTube - Machine learning - Introduction to
Gaussian processes (Nando de Freitas, 2013)
X2
X1
X2
X1
Gaussian Basics (2)
Source: YouTube - Machine learning - Introduction to
Gaussian processes (Nando de Freitas, 2013)
X2
X1
X2
X1
X1
* X1
*
Gaussian Basics (3) - from joint to conditional dist.
Source: YouTube - Machine learning - Introduction to
Gaussian processes (Nando de Freitas, 2013)
X2
X1
X1
*
X2
Gaussian Basics (4) - Multivariate Gaussian Dist.
Source: YouTube - Machine learning - Introduction to
Gaussian processes (Nando de Freitas, 2013)
f(x)
x
x1
x2
x3
f1
f2
f3
Gaussian Basics (4) - Multivariate Gaussian Dist.
Source: YouTube - Machine learning - Introduction to
Gaussian processes (Nando de Freitas, 2013)
f(x)
x
x1
x2
x3
f1
f2
f3
Gaussian Basics (4) - Multivariate Gaussian Dist.
Source: YouTube - Machine learning - Introduction to
Gaussian processes (Nando de Freitas, 2013)
f(x)
x
x1
x2
x3
f1
f2
f3
Where have data
+ confidence (lower uncertainty)
Where don't have data
- confidence (higher uncertainty)
Gaussian Processes (1)
● Generalization of multivariate gaussian distribution to infinitely many
variables
● BAYESIAN NON-PARAMETRIC = # parameters grows w/ size of dataset =
infinitely parametric
● GP are distribution over functions (not point estimates)
● Can be seen as bayesian version of SVM
● Uses kernels as SVM methods
Kernel Trick (recap)
Projects non-linear separable input into high-order linear separable space
Source: https://goo.gl/kxLepp
Gaussian Processes (2)
● GP = distribution over functions (or high dimensional vectors)
● GP is fully specified by:
○ Mean vector
○ Covariance matrix ∑
● Learning in GP = finding suitable properties for the covariance function
Gaussian Processes (3) - Regression
Gaussian Processes (4) - Regression
Covariance Functions - Squared Exponential
Source: https://docs.pymc.io/
Covariance Functions - Exponential
Source: https://docs.pymc.io/
Covariance Functions - Matern 5/2
Source: https://docs.pymc.io/
Covariance Functions - Matern 3/2
Source: https://docs.pymc.io/
Covariance Functions - Cosine
Source: https://docs.pymc.io/
Demo time
Code:
https://github.com/rsilveira79/bayesian_notebooks/blob/master/uncertainty_notebooks/gaussian_process_PyMC3.ipynb
Bayes
meets
Deep
Learning Or more logically, deep
learning meets
Bayesian inference
Intuition (1)
Source: https://ericmjl.github.io/bayesian-deep-learning-demystified/
Intuition (2) - From this ...
Source: https://ericmjl.github.io/bayesian-deep-learning-demystified/
Intuition (3) - … to this
Source: https://ericmjl.github.io/bayesian-deep-learning-demystified/
Bayes by Backprop (1)
Source: Weight Uncertainty in Neural Networks
(Blundell et al, 2015)
● Each weight w is a distribution (instead of single point estimate)
● Backpropagation-compatible algorithm to compute distribution over w
Bayes by Backprop (2)
mean gradients
(and weights)
Source: Weight Uncertainty in Neural Networks
(Blundell et al, 2015)
standard deviation gradients
(and weights)
Bayesian approach: data is
fixed, update model beliefs (w)
Bayes by Backprop (3) - MNIST
Source: Weight Uncertainty in Neural Networks
(Blundell et al, 2015)
Source: Dropout: A Simple Way to Prevent Neural
Networks from Overfitting (Srivastava et al, 2014)
A quick note on dropout
w/o dropout w/ dropout
KEY IDEA
1 NN w/ dropout = ensemble of 2n
thinned networks
w/o dropout w/ dropout
y1 y1
~
y2 y2
~
r1
r2
rj
(l)
=
Bernoulli(p)
Monte Carlo Dropout (MC Dropout) (1)
Source: Dropout as a Bayesian Approximation: Representing
Model Uncertainty in Deep Learning (Gal et al, 2016),
Uncertainty in Deep Learning - PhD Thesis (Gal, 2016)
● MC dropout is equivalent to performing T stochastic forward passes
through the network and averaging the results (model averaging)
p → probability of units
not being dropped
Monte Carlo Dropout (MC Dropout) (2)
Source: Dropout as a Bayesian Approximation: Representing
Model Uncertainty in Deep Learning (Gal et al, 2016),
Uncertainty in Deep Learning - PhD Thesis (Gal, 2016)
● In practice, given a point x:
○ Drop units at test time;
○ Repeat n times (e.g. 10, 100, 200);
○ Look at the mean and variance;
Monte Carlo Dropout (MC Dropout) (3)
Source: Dropout as a Bayesian Approximation: Representing
Model Uncertainty in Deep Learning (Gal et al, 2016),
Uncertainty in Deep Learning - PhD Thesis (Gal, 2016)
Demo time
Code:
https://github.com/rsilveira79/bayesian_notebooks/blob/master/uncertainty_notebooks/uncertainty_mc_dropout.ipynb
Deep Ensembles (1)
Source: Simple and Scalable Predictive Uncertainty Estimation
using Deep Ensembles (Lakshminarayanan et al, 2017)
● Non-bayesian method
● High quality uncertainty predictions
a. Not over-confident on out-of-distribution examples
● Model don't need to have dropout
● Basic receipt:
a. Use proper scoring rule (loss function) - NLL for regression
b. Use adversarial inputs (smooth predictions)
c. Train ensemble of classifiers
Deep Ensembles (2)
Source: Simple and Scalable Predictive Uncertainty Estimation
using Deep Ensembles (Lakshminarayanan et al, 2017)
● Scoring Rules (Regression) mean → no variance in
MSE loss
mean
variance
Deep Ensembles (3)
Source: Simple and Scalable Predictive Uncertainty Estimation
using Deep Ensembles (Lakshminarayanan et al, 2017)
MSE NLL Adversarial
training
Ensemble
(M=5)
Deep Ensembles (4)
Source: Simple and Scalable Predictive Uncertainty Estimation
using Deep Ensembles (Lakshminarayanan et al, 2017)
Deep Ensembles (5)
Source: Simple and Scalable Predictive Uncertainty Estimation
using Deep Ensembles (Lakshminarayanan et al, 2017)
Demo time
Code:
https://github.com/rsilveira79/bayesian_notebooks/blob/master/uncertainty_notebooks/deep_ensemble_uncertainty_Pytorch.ipynb
Uncertainty in Discrete-Continuous Data
Source: Quantifying Uncertainty in Discrete-Continuous and
Skewed Data with Bayesian Deep Learning (Blundell et al, 2015)
Uncertainty in Recommender Systems
Source: Deep density networks and uncertainty
in recommender systems (Zeldes et al, 2017)
Take
home
Take #1
Have free time?
Study Bayesian Stats
(also if doesn't have free time)
Take #2
Probabilistic Programming
(e.g. GP) can be a powerful tool to
master - PyMC3, Pyro.ai, Stan
(specially for small datasets)
Take #3
For Bayesian Deep Learning
● stay tuned w/ latest developments
(Cambridge, Deep Mind, Uber)
● always check uncertainty quality
● try different approaches
Probe
further
Source: https://sites.google.com/view/udl2018/accepted-papers
Source: http://auai.org/uai2018/index.php
Source: http://www.gaussianprocess.org/gpml/
Source: http://mlg.eng.cam.ac.uk/yarin/thesis/thesis.pdf
Source: https://github.com/CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers
Nice Repos
● https://github.com/fonnesbeck/bayesian_mixer_london_2017
● https://ericmjl.github.io/bayesian-deep-learning-demystified/
● https://github.com/yaringal
Nice blog posts
● https://blog.dominodatalab.com/fitting-gaussian-process-models-python/
● http://katbailey.github.io/post/gaussian-processes-for-dummies/
● http://mlg.eng.cam.ac.uk/yarin/blog_2248.html
● https://www.nitarshan.com/bayes-by-backprop/

Contenu connexe

Tendances

Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...
Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...
Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...Sri Ambati
 
Unsupervised Anomaly Detection with Isolation Forest - Elena Sharova
Unsupervised Anomaly Detection with Isolation Forest - Elena SharovaUnsupervised Anomaly Detection with Isolation Forest - Elena Sharova
Unsupervised Anomaly Detection with Isolation Forest - Elena SharovaPyData
 
Artificial Neural Network Tutorial | Deep Learning With Neural Networks | Edu...
Artificial Neural Network Tutorial | Deep Learning With Neural Networks | Edu...Artificial Neural Network Tutorial | Deep Learning With Neural Networks | Edu...
Artificial Neural Network Tutorial | Deep Learning With Neural Networks | Edu...Edureka!
 
Explicit Density Models
Explicit Density ModelsExplicit Density Models
Explicit Density ModelsSangwoo Mo
 
Explainable AI
Explainable AIExplainable AI
Explainable AIDinesh V
 
Explainability and bias in AI
Explainability and bias in AIExplainability and bias in AI
Explainability and bias in AIBill Liu
 
Introduction to Diffusion Models
Introduction to Diffusion ModelsIntroduction to Diffusion Models
Introduction to Diffusion ModelsSangwoo Mo
 
activelearning.ppt
activelearning.pptactivelearning.ppt
activelearning.pptbutest
 
Dimensionality Reduction
Dimensionality ReductionDimensionality Reduction
Dimensionality Reductionmrizwan969
 
[컨퍼런스] 모두콘 2018 리뷰
[컨퍼런스] 모두콘 2018 리뷰[컨퍼런스] 모두콘 2018 리뷰
[컨퍼런스] 모두콘 2018 리뷰Donghyeon Kim
 
Statistics vs machine learning
Statistics vs machine learningStatistics vs machine learning
Statistics vs machine learningTom Dierickx
 
Introduction to Deep Learning
Introduction to Deep LearningIntroduction to Deep Learning
Introduction to Deep LearningOswald Campesato
 
Classification and Regression
Classification and RegressionClassification and Regression
Classification and RegressionMegha Sharma
 
Adversarial Attacks on A.I. Systems — NextCon, Jan 2019
Adversarial Attacks on A.I. Systems — NextCon, Jan 2019Adversarial Attacks on A.I. Systems — NextCon, Jan 2019
Adversarial Attacks on A.I. Systems — NextCon, Jan 2019anant90
 
Lecture 18: Gaussian Mixture Models and Expectation Maximization
Lecture 18: Gaussian Mixture Models and Expectation MaximizationLecture 18: Gaussian Mixture Models and Expectation Maximization
Lecture 18: Gaussian Mixture Models and Expectation Maximizationbutest
 
Applications in Machine Learning
Applications in Machine LearningApplications in Machine Learning
Applications in Machine LearningJoel Graff
 

Tendances (20)

Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...
Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...
Achieving Algorithmic Transparency with Shapley Additive Explanations (H2O Lo...
 
Unsupervised Anomaly Detection with Isolation Forest - Elena Sharova
Unsupervised Anomaly Detection with Isolation Forest - Elena SharovaUnsupervised Anomaly Detection with Isolation Forest - Elena Sharova
Unsupervised Anomaly Detection with Isolation Forest - Elena Sharova
 
Session-Based Recommender Systems
Session-Based Recommender SystemsSession-Based Recommender Systems
Session-Based Recommender Systems
 
Artificial Neural Network Tutorial | Deep Learning With Neural Networks | Edu...
Artificial Neural Network Tutorial | Deep Learning With Neural Networks | Edu...Artificial Neural Network Tutorial | Deep Learning With Neural Networks | Edu...
Artificial Neural Network Tutorial | Deep Learning With Neural Networks | Edu...
 
Explicit Density Models
Explicit Density ModelsExplicit Density Models
Explicit Density Models
 
Explainable AI
Explainable AIExplainable AI
Explainable AI
 
Explainability and bias in AI
Explainability and bias in AIExplainability and bias in AI
Explainability and bias in AI
 
Introduction to Diffusion Models
Introduction to Diffusion ModelsIntroduction to Diffusion Models
Introduction to Diffusion Models
 
activelearning.ppt
activelearning.pptactivelearning.ppt
activelearning.ppt
 
Dimensionality Reduction
Dimensionality ReductionDimensionality Reduction
Dimensionality Reduction
 
[컨퍼런스] 모두콘 2018 리뷰
[컨퍼런스] 모두콘 2018 리뷰[컨퍼런스] 모두콘 2018 리뷰
[컨퍼런스] 모두콘 2018 리뷰
 
Statistics vs machine learning
Statistics vs machine learningStatistics vs machine learning
Statistics vs machine learning
 
Introduction to Deep Learning
Introduction to Deep LearningIntroduction to Deep Learning
Introduction to Deep Learning
 
Bayesian networks
Bayesian networksBayesian networks
Bayesian networks
 
Classification and Regression
Classification and RegressionClassification and Regression
Classification and Regression
 
Adversarial Attacks on A.I. Systems — NextCon, Jan 2019
Adversarial Attacks on A.I. Systems — NextCon, Jan 2019Adversarial Attacks on A.I. Systems — NextCon, Jan 2019
Adversarial Attacks on A.I. Systems — NextCon, Jan 2019
 
Naive bayes
Naive bayesNaive bayes
Naive bayes
 
Generative models
Generative modelsGenerative models
Generative models
 
Lecture 18: Gaussian Mixture Models and Expectation Maximization
Lecture 18: Gaussian Mixture Models and Expectation MaximizationLecture 18: Gaussian Mixture Models and Expectation Maximization
Lecture 18: Gaussian Mixture Models and Expectation Maximization
 
Applications in Machine Learning
Applications in Machine LearningApplications in Machine Learning
Applications in Machine Learning
 

Similaire à Deep Learning Uncertainty

Variants of GANs - Jaejun Yoo
Variants of GANs - Jaejun YooVariants of GANs - Jaejun Yoo
Variants of GANs - Jaejun YooJaeJun Yoo
 
Composing graphical models with neural networks for structured representatio...
Composing graphical models with  neural networks for structured representatio...Composing graphical models with  neural networks for structured representatio...
Composing graphical models with neural networks for structured representatio...Jeongmin Cha
 
Deep Learning: concepts and use cases (October 2018)
Deep Learning: concepts and use cases (October 2018)Deep Learning: concepts and use cases (October 2018)
Deep Learning: concepts and use cases (October 2018)Julien SIMON
 
Uncertainty Modeling in Deep Learning
Uncertainty Modeling in Deep LearningUncertainty Modeling in Deep Learning
Uncertainty Modeling in Deep LearningSungjoon Choi
 
Are you sure about that?! Uncertainty Quantification in AI
Are you sure about that?! Uncertainty Quantification in AIAre you sure about that?! Uncertainty Quantification in AI
Are you sure about that?! Uncertainty Quantification in AIinovex GmbH
 
Self-supervised Learning Lecture Note
Self-supervised Learning Lecture NoteSelf-supervised Learning Lecture Note
Self-supervised Learning Lecture NoteSangwoo Mo
 
Generative adversarial networks
Generative adversarial networksGenerative adversarial networks
Generative adversarial networks남주 김
 
Maxwell W Libbrecht - pomegranate: fast and flexible probabilistic modeling i...
Maxwell W Libbrecht - pomegranate: fast and flexible probabilistic modeling i...Maxwell W Libbrecht - pomegranate: fast and flexible probabilistic modeling i...
Maxwell W Libbrecht - pomegranate: fast and flexible probabilistic modeling i...PyData
 
Introduction
IntroductionIntroduction
Introductionbutest
 
Introduction
IntroductionIntroduction
Introductionbutest
 
Introduction
IntroductionIntroduction
Introductionbutest
 
07-Classification.pptx
07-Classification.pptx07-Classification.pptx
07-Classification.pptxShree Shree
 
Legal Analytics Course - Class 9 - Clustering Algorithms (K-Means & Hierarch...
Legal Analytics Course - Class 9 -  Clustering Algorithms (K-Means & Hierarch...Legal Analytics Course - Class 9 -  Clustering Algorithms (K-Means & Hierarch...
Legal Analytics Course - Class 9 - Clustering Algorithms (K-Means & Hierarch...Daniel Katz
 
Robustness Metrics for ML Models based on Deep Learning Methods
Robustness Metrics for ML Models based on Deep Learning MethodsRobustness Metrics for ML Models based on Deep Learning Methods
Robustness Metrics for ML Models based on Deep Learning MethodsData Science Milan
 
Learning to Balance: Bayesian Meta-Learning for Imbalanced and Out-of-distrib...
Learning to Balance: Bayesian Meta-Learning for Imbalanced and Out-of-distrib...Learning to Balance: Bayesian Meta-Learning for Imbalanced and Out-of-distrib...
Learning to Balance: Bayesian Meta-Learning for Imbalanced and Out-of-distrib...MLAI2
 
Probabilistic modeling in deep learning
Probabilistic modeling in deep learningProbabilistic modeling in deep learning
Probabilistic modeling in deep learningDenis Dus
 
GDC2019 - SEED - Towards Deep Generative Models in Game Development
GDC2019 - SEED - Towards Deep Generative Models in Game DevelopmentGDC2019 - SEED - Towards Deep Generative Models in Game Development
GDC2019 - SEED - Towards Deep Generative Models in Game DevelopmentElectronic Arts / DICE
 
Download It
Download ItDownload It
Download Itbutest
 

Similaire à Deep Learning Uncertainty (20)

Variants of GANs - Jaejun Yoo
Variants of GANs - Jaejun YooVariants of GANs - Jaejun Yoo
Variants of GANs - Jaejun Yoo
 
Composing graphical models with neural networks for structured representatio...
Composing graphical models with  neural networks for structured representatio...Composing graphical models with  neural networks for structured representatio...
Composing graphical models with neural networks for structured representatio...
 
Deep Learning: concepts and use cases (October 2018)
Deep Learning: concepts and use cases (October 2018)Deep Learning: concepts and use cases (October 2018)
Deep Learning: concepts and use cases (October 2018)
 
Uncertainty Modeling in Deep Learning
Uncertainty Modeling in Deep LearningUncertainty Modeling in Deep Learning
Uncertainty Modeling in Deep Learning
 
Are you sure about that?! Uncertainty Quantification in AI
Are you sure about that?! Uncertainty Quantification in AIAre you sure about that?! Uncertainty Quantification in AI
Are you sure about that?! Uncertainty Quantification in AI
 
Self-supervised Learning Lecture Note
Self-supervised Learning Lecture NoteSelf-supervised Learning Lecture Note
Self-supervised Learning Lecture Note
 
Generative adversarial networks
Generative adversarial networksGenerative adversarial networks
Generative adversarial networks
 
Maxwell W Libbrecht - pomegranate: fast and flexible probabilistic modeling i...
Maxwell W Libbrecht - pomegranate: fast and flexible probabilistic modeling i...Maxwell W Libbrecht - pomegranate: fast and flexible probabilistic modeling i...
Maxwell W Libbrecht - pomegranate: fast and flexible probabilistic modeling i...
 
Introduction
IntroductionIntroduction
Introduction
 
Introduction
IntroductionIntroduction
Introduction
 
Introduction
IntroductionIntroduction
Introduction
 
07-Classification.pptx
07-Classification.pptx07-Classification.pptx
07-Classification.pptx
 
MyStataLab Assignment Help
MyStataLab Assignment HelpMyStataLab Assignment Help
MyStataLab Assignment Help
 
Legal Analytics Course - Class 9 - Clustering Algorithms (K-Means & Hierarch...
Legal Analytics Course - Class 9 -  Clustering Algorithms (K-Means & Hierarch...Legal Analytics Course - Class 9 -  Clustering Algorithms (K-Means & Hierarch...
Legal Analytics Course - Class 9 - Clustering Algorithms (K-Means & Hierarch...
 
Robustness Metrics for ML Models based on Deep Learning Methods
Robustness Metrics for ML Models based on Deep Learning MethodsRobustness Metrics for ML Models based on Deep Learning Methods
Robustness Metrics for ML Models based on Deep Learning Methods
 
Learning to Balance: Bayesian Meta-Learning for Imbalanced and Out-of-distrib...
Learning to Balance: Bayesian Meta-Learning for Imbalanced and Out-of-distrib...Learning to Balance: Bayesian Meta-Learning for Imbalanced and Out-of-distrib...
Learning to Balance: Bayesian Meta-Learning for Imbalanced and Out-of-distrib...
 
Probabilistic modeling in deep learning
Probabilistic modeling in deep learningProbabilistic modeling in deep learning
Probabilistic modeling in deep learning
 
GDC2019 - SEED - Towards Deep Generative Models in Game Development
GDC2019 - SEED - Towards Deep Generative Models in Game DevelopmentGDC2019 - SEED - Towards Deep Generative Models in Game Development
GDC2019 - SEED - Towards Deep Generative Models in Game Development
 
Download It
Download ItDownload It
Download It
 
Semi-Supervised Learning with GANs by Olga Petrova, Machine Learning Engineer...
Semi-Supervised Learning with GANs by Olga Petrova, Machine Learning Engineer...Semi-Supervised Learning with GANs by Olga Petrova, Machine Learning Engineer...
Semi-Supervised Learning with GANs by Olga Petrova, Machine Learning Engineer...
 

Dernier

The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 

Dernier (20)

The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 

Deep Learning Uncertainty