SlideShare a Scribd company logo
Machine Learning

   Lecture 1: Probabilistic Graphical Models
                               Phạm Duy Tùng
                    Email: duytung88@gmail.com




                                             9/9/2012
9/17/2012   Some slides copied from Pattern Recognition and Machine Learning (Bishop 2006)   1
Introduction
• Probabilistic graphical models
      • A visual presentation of probability distributions, using
        diagrams, called PGMs
• Two types of PGM
      • Bayesian Network (Directed Graphical Model)
      • Markov Network (Undirected Graphical Model)




9/17/2012                                                           2
Introduction
• Offering several useful properties:
      • They provide a simply way to visualize the
        structure of probabilistic models and motivate
        new models.
      • Insights into the properties of the models,
        including    the   conditional    independence
        properties, can be obtain by inspection of the
        graph.
      • Graph based algorithms for calculation and
        computation

9/17/2012                                            3
Topics
• Introduction
• Representation
   • Bayesian Networks (Directed Graphical Model)
   • Markov Networks (Undirected Graphical Model)
   • Converting Bayesian Networks to Markov Networks
   • Directed vs. Undirected Graphs
• Some examples
   • Naïve Bayes Classifier
   • Ising Model
• Inference
• Learning

9/17/2012                                              4
Representation
• Random variables -> Nodes
• In Conditional Independences -> Edges
  (Directed or Undirected)


            Probability                Graphical
             Models                     Models


9/17/2012                                          5
Topics
• Introduction
• Representation
   • Bayesian Networks (Directed Graphical Model)
   • Markov Networks (Undirected Graphical Model)
   • Converting Bayesian Networks to Markov Networks
   • Directed vs. Undirected Graphs
• Some examples
   • Naïve Bayes Classifier
   • Ising Model
• Inference
• Learning

9/17/2012                                              6
Representation->Bayesian Network
• Using Directed Acyclic Graph (DAG)

• Joint distribution factorizes according to graph




9/17/2012                                        7
Representation->Bayesian Network




9/17/2012                      8
Representation->Bayesian Network
• Conditional independence:

      Or equivalently:



      Denoted by:




9/17/2012                      9
Representation->Bayesian Network
• Conditional independence: Example 1




9/17/2012                               10
Representation->Bayesian Network
• Conditional independence: Example 1




9/17/2012                               11
Representation->Bayesian Network
• Conditional independence: Example 2




9/17/2012                               12
Representation->Bayesian Network
• Conditional independence: Example 2




9/17/2012                               13
Representation->Bayesian Network
• Conditional independence: Example 3




9/17/2012                               14
Representation->Bayesian Network
• Conditional independence: Example 3




9/17/2012                               15
Representation->Bayesian Network
• D-separation
      • A, B, and C are non-intersecting subsets of nodes in a directed
        graph.
      • A path from A to B is blocked if it contains a node such that
        either
          a)the arrows on the path meet either head-to-tail or tail-to-tail
            at the node, and the node is in the set C, or
          b)the arrows meet head-to-head at the node, and neither the
            node, nor any of its descendants, are in the set C.
      • If all paths from A to B are blocked, A is said to be d-separated
        from B by C.
      • If A is d-separated from B by C, the joint distribution over all
        variables in the graph satisfies           .
9/17/2012                                                                16
Representation->Bayesian Network
• D-separation: Example




9/17/2012                      17
Representation->Bayesian Network
• Markov Blanket




                   Factors independent of xi cancel
                   between numerator and denominator.



9/17/2012                                               18
Example
• Mixture of Gaussians




9/17/2012                  19
Home Work
• LDA model (David M.Blei)




9/17/2012                    20
Topics
• Introduction
• Representation
   • Bayesian Networks (Directed Graphical Model)
   • Markov Networks (Undirected Graphical Model)
   • Converting Bayesian Networks to Markov Networks
   • Directed vs. Undirected Graphs
• Some examples
   • Naïve Bayes Classifier
   • Ising Model
• Inference
• Learning

9/17/2012                                              21
Representation->Markov Network
• Many phenomenon in real life, we can not
  determine exactly the directionality to the
  interaction between random variables.
• We use Markov Network to modeling these
  phenomenon instead of Bayesian Network.




9/17/2012                                   22
Representation->Markov Network
  • Conditional independence

                               Markov Blanket




9/17/2012                                       23
Representation->Markov Network
• Factorization properties




9/17/2012                          24
Representation->Markov Network
• Clique
            Clique




                     Maximal Clique



9/17/2012                             25
Representation->Markov Network

   • where          is the potential over clique C and


   is the normalization coefficient; note: M K-state variables
   KM terms in Z.

   • Energies and the Boltzmann distribution




9/17/2012                                                        26
Representation -> Converting Bayesian
         Networks to Markov Networks




9/17/2012                                     27
Representation -> Converting Bayesian
   Networks to Markov Networks
• Additional links




9/17/2012                           28
Directed vs. Undirected Graphs




9/17/2012                              29
Directed vs. Undirected Graphs
Topics
• Introduction
• Representation
   • Bayesian Networks (Directed Graphical Model)
   • Markov Networks (Undirected Graphical Model)
   • Converting Bayesian Networks to Markov Networks
   • Directed vs. Undirected Graphs
• Some examples
   • Naïve Bayes Classifier
   • Ising Model
• Inference
• Learning



9/17/2012                                              31
Naïve Bayes Classifier


• Predicting




9/17/2012                            32
Naïve Bayes Classifier
• How to estimate      and     ?
• Solution: We can separately estimate two
  parts of the model using Maximum Likelihood




9/17/2012                                   33
Naïve Bayes Classifier




9/17/2012                            34
Naïve Bayes Classifier




9/17/2012                            35
Naïve Bayes Classifier




9/17/2012                            36
Naïve Bayes Classifier




9/17/2012                            37
Naïve Bayes Classifier




9/17/2012                            38
Naïve Bayes Classifier




9/17/2012                            39
Naïve Bayes Classifier




9/17/2012                            40
Naïve Bayes Classifier




9/17/2012                            41
Naïve Bayes Classifier




9/17/2012                            42
Naïve Bayes Classifier




9/17/2012                            43
Ising Model and Image de-noising
• Markov Random Field




9/17/2012                            44
Ising Model and Image de-noising
• An example of Ising Model used in Image
  processing.




                                Noisy Image
            Original Image




9/17/2012                                     45
Ising Model and Image de-noising




9/17/2012                            46
Ising Model and Image de-noising
• All of our assumptions about images are
  encoded as follows:




9/17/2012                                   47
Ising Model and Image de-noising




9/17/2012                            48
Ising Model and Image de-noising




9/17/2012                            49
Ising Model and Image de-noising




9/17/2012                            50
Ising Model and Image de-noising
• Results




            Noisy Image   Restored Image (ICM)




9/17/2012                                        51
Ising Model and Image de-noising
• Comparing two optimizing algorithms: Graph
  cuts vs ICM




            Restored Image (ICM)   Restored Image (Graph cuts)

9/17/2012                                                        52
Ising Model and Image de-noising
• Home works
      – Design and implement an image segmentation
        algorithms using Ising model.




9/17/2012                                            53
Topics
• Introduction
• Representation
   • Bayesian Networks (Directed Graphical Model)
   • Markov Networks (Undirected Graphical Model)
   • Converting Bayesian Networks to Markov Networks
   • Directed vs. Undirected Graphs
• Some examples
   • Naïve Bayes Classifier
   • Ising Model
• Inference
• Learning

9/17/2012                                              54
Inference




9/17/2012               55
Learning




9/17/2012              56
Ad

More Related Content

What's hot (20)

GMM
GMMGMM
GMM
atulnitrkl
 
Ensemble learning
Ensemble learningEnsemble learning
Ensemble learning
Haris Jamil
 
Bias and variance trade off
Bias and variance trade offBias and variance trade off
Bias and variance trade off
VARUN KUMAR
 
Hidden Markov Model
Hidden Markov Model Hidden Markov Model
Hidden Markov Model
Mahmoud El-tayeb
 
Bayesian Networks - A Brief Introduction
Bayesian Networks - A Brief IntroductionBayesian Networks - A Brief Introduction
Bayesian Networks - A Brief Introduction
Adnan Masood
 
Introduction to Soft Computing
Introduction to Soft Computing Introduction to Soft Computing
Introduction to Soft Computing
Aakash Kumar
 
Knowledge representation and Predicate logic
Knowledge representation and Predicate logicKnowledge representation and Predicate logic
Knowledge representation and Predicate logic
Amey Kerkar
 
Markov Random Field (MRF)
Markov Random Field (MRF)Markov Random Field (MRF)
Markov Random Field (MRF)
IEEE International Conference on Intelligent Information Hiding and Multimedia Signal Processing
 
Learning in AI
Learning in AILearning in AI
Learning in AI
Minakshi Atre
 
Classification and Clustering
Classification and ClusteringClassification and Clustering
Classification and Clustering
Yogendra Tamang
 
AI_Session 28 planning graph.pptx
AI_Session 28 planning graph.pptxAI_Session 28 planning graph.pptx
AI_Session 28 planning graph.pptx
Guru Nanak Technical Institutions
 
Classical Planning
Classical PlanningClassical Planning
Classical Planning
ahmad bassiouny
 
Phases of compiler
Phases of compilerPhases of compiler
Phases of compiler
Akhil Kaushik
 
Machine Learning and Data Mining: 14 Evaluation and Credibility
Machine Learning and Data Mining: 14 Evaluation and CredibilityMachine Learning and Data Mining: 14 Evaluation and Credibility
Machine Learning and Data Mining: 14 Evaluation and Credibility
Pier Luca Lanzi
 
Knowledge representation
Knowledge representationKnowledge representation
Knowledge representation
Md. Tanvir Masud
 
Unification and Lifting
Unification and LiftingUnification and Lifting
Unification and Lifting
Megha Sharma
 
HML: Historical View and Trends of Deep Learning
HML: Historical View and Trends of Deep LearningHML: Historical View and Trends of Deep Learning
HML: Historical View and Trends of Deep Learning
Yan Xu
 
Bayes Belief Networks
Bayes Belief NetworksBayes Belief Networks
Bayes Belief Networks
Sai Kumar Kodam
 
Statistical learning
Statistical learningStatistical learning
Statistical learning
Slideshare
 
Module 4: Model Selection and Evaluation
Module 4: Model Selection and EvaluationModule 4: Model Selection and Evaluation
Module 4: Model Selection and Evaluation
Sara Hooker
 
Ensemble learning
Ensemble learningEnsemble learning
Ensemble learning
Haris Jamil
 
Bias and variance trade off
Bias and variance trade offBias and variance trade off
Bias and variance trade off
VARUN KUMAR
 
Bayesian Networks - A Brief Introduction
Bayesian Networks - A Brief IntroductionBayesian Networks - A Brief Introduction
Bayesian Networks - A Brief Introduction
Adnan Masood
 
Introduction to Soft Computing
Introduction to Soft Computing Introduction to Soft Computing
Introduction to Soft Computing
Aakash Kumar
 
Knowledge representation and Predicate logic
Knowledge representation and Predicate logicKnowledge representation and Predicate logic
Knowledge representation and Predicate logic
Amey Kerkar
 
Classification and Clustering
Classification and ClusteringClassification and Clustering
Classification and Clustering
Yogendra Tamang
 
Machine Learning and Data Mining: 14 Evaluation and Credibility
Machine Learning and Data Mining: 14 Evaluation and CredibilityMachine Learning and Data Mining: 14 Evaluation and Credibility
Machine Learning and Data Mining: 14 Evaluation and Credibility
Pier Luca Lanzi
 
Unification and Lifting
Unification and LiftingUnification and Lifting
Unification and Lifting
Megha Sharma
 
HML: Historical View and Trends of Deep Learning
HML: Historical View and Trends of Deep LearningHML: Historical View and Trends of Deep Learning
HML: Historical View and Trends of Deep Learning
Yan Xu
 
Statistical learning
Statistical learningStatistical learning
Statistical learning
Slideshare
 
Module 4: Model Selection and Evaluation
Module 4: Model Selection and EvaluationModule 4: Model Selection and Evaluation
Module 4: Model Selection and Evaluation
Sara Hooker
 

Similar to Lecture 1 graphical models (16)

A 3 dimensional data model in hbase for large time-series dataset-20120915
A 3 dimensional data model in hbase for large time-series dataset-20120915A 3 dimensional data model in hbase for large time-series dataset-20120915
A 3 dimensional data model in hbase for large time-series dataset-20120915
Dan Han
 
Bridging Building Information Modeling and Parametric Design
Bridging Building Information Modeling and Parametric DesignBridging Building Information Modeling and Parametric Design
Bridging Building Information Modeling and Parametric Design
Stefan Boeykens
 
A location-aware embedding technique for accurate landmark recognition
A location-aware embedding technique for accurate landmark recognitionA location-aware embedding technique for accurate landmark recognition
A location-aware embedding technique for accurate landmark recognition
Federico Magliani
 
Relational knowledge distillation
Relational knowledge distillationRelational knowledge distillation
Relational knowledge distillation
NAVER Engineering
 
Master Thesis: Conformal multi-material mesh generation from labelled medical...
Master Thesis: Conformal multi-material mesh generation from labelled medical...Master Thesis: Conformal multi-material mesh generation from labelled medical...
Master Thesis: Conformal multi-material mesh generation from labelled medical...
Christian Kehl
 
Lecture_16_Self-supervised_Learning.pptx
Lecture_16_Self-supervised_Learning.pptxLecture_16_Self-supervised_Learning.pptx
Lecture_16_Self-supervised_Learning.pptx
Karimdabbabi
 
NOSQL overview and intro to graph databases with Neo4j (Geeknight May 2010)
NOSQL overview and intro to graph databases with Neo4j (Geeknight May 2010)NOSQL overview and intro to graph databases with Neo4j (Geeknight May 2010)
NOSQL overview and intro to graph databases with Neo4j (Geeknight May 2010)
Emil Eifrem
 
Qtreds
QtredsQtreds
Qtreds
pj_p
 
Semi-supervised concept detection by learning the structure of similarity graphs
Semi-supervised concept detection by learning the structure of similarity graphsSemi-supervised concept detection by learning the structure of similarity graphs
Semi-supervised concept detection by learning the structure of similarity graphs
Symeon Papadopoulos
 
CouchDB to the Edge ApacheCon EU
CouchDB to the  Edge ApacheCon EUCouchDB to the  Edge ApacheCon EU
CouchDB to the Edge ApacheCon EU
Chris Anderson
 
Spring Data Neo4j Intro SpringOne 2011
Spring Data Neo4j Intro SpringOne 2011Spring Data Neo4j Intro SpringOne 2011
Spring Data Neo4j Intro SpringOne 2011
jexp
 
Emerging Properties in Self-Supervised Vision Transformers
Emerging Properties in Self-Supervised Vision TransformersEmerging Properties in Self-Supervised Vision Transformers
Emerging Properties in Self-Supervised Vision Transformers
Sungchul Kim
 
Actor three languages
Actor three languagesActor three languages
Actor three languages
Reidar Sollid
 
250324_Thuy_Labseminar[3D Denoisers are Good 2D Teachers: Molecular Pretraini...
250324_Thuy_Labseminar[3D Denoisers are Good 2D Teachers: Molecular Pretraini...250324_Thuy_Labseminar[3D Denoisers are Good 2D Teachers: Molecular Pretraini...
250324_Thuy_Labseminar[3D Denoisers are Good 2D Teachers: Molecular Pretraini...
thanhdowork
 
lecture_16_jiajun.pdf
lecture_16_jiajun.pdflecture_16_jiajun.pdf
lecture_16_jiajun.pdf
Kuan-Tsae Huang
 
JumbleDB *Redis With Gears* Alon Spiegel
JumbleDB *Redis With Gears* Alon SpiegelJumbleDB *Redis With Gears* Alon Spiegel
JumbleDB *Redis With Gears* Alon Spiegel
Redis Labs
 
A 3 dimensional data model in hbase for large time-series dataset-20120915
A 3 dimensional data model in hbase for large time-series dataset-20120915A 3 dimensional data model in hbase for large time-series dataset-20120915
A 3 dimensional data model in hbase for large time-series dataset-20120915
Dan Han
 
Bridging Building Information Modeling and Parametric Design
Bridging Building Information Modeling and Parametric DesignBridging Building Information Modeling and Parametric Design
Bridging Building Information Modeling and Parametric Design
Stefan Boeykens
 
A location-aware embedding technique for accurate landmark recognition
A location-aware embedding technique for accurate landmark recognitionA location-aware embedding technique for accurate landmark recognition
A location-aware embedding technique for accurate landmark recognition
Federico Magliani
 
Relational knowledge distillation
Relational knowledge distillationRelational knowledge distillation
Relational knowledge distillation
NAVER Engineering
 
Master Thesis: Conformal multi-material mesh generation from labelled medical...
Master Thesis: Conformal multi-material mesh generation from labelled medical...Master Thesis: Conformal multi-material mesh generation from labelled medical...
Master Thesis: Conformal multi-material mesh generation from labelled medical...
Christian Kehl
 
Lecture_16_Self-supervised_Learning.pptx
Lecture_16_Self-supervised_Learning.pptxLecture_16_Self-supervised_Learning.pptx
Lecture_16_Self-supervised_Learning.pptx
Karimdabbabi
 
NOSQL overview and intro to graph databases with Neo4j (Geeknight May 2010)
NOSQL overview and intro to graph databases with Neo4j (Geeknight May 2010)NOSQL overview and intro to graph databases with Neo4j (Geeknight May 2010)
NOSQL overview and intro to graph databases with Neo4j (Geeknight May 2010)
Emil Eifrem
 
Qtreds
QtredsQtreds
Qtreds
pj_p
 
Semi-supervised concept detection by learning the structure of similarity graphs
Semi-supervised concept detection by learning the structure of similarity graphsSemi-supervised concept detection by learning the structure of similarity graphs
Semi-supervised concept detection by learning the structure of similarity graphs
Symeon Papadopoulos
 
CouchDB to the Edge ApacheCon EU
CouchDB to the  Edge ApacheCon EUCouchDB to the  Edge ApacheCon EU
CouchDB to the Edge ApacheCon EU
Chris Anderson
 
Spring Data Neo4j Intro SpringOne 2011
Spring Data Neo4j Intro SpringOne 2011Spring Data Neo4j Intro SpringOne 2011
Spring Data Neo4j Intro SpringOne 2011
jexp
 
Emerging Properties in Self-Supervised Vision Transformers
Emerging Properties in Self-Supervised Vision TransformersEmerging Properties in Self-Supervised Vision Transformers
Emerging Properties in Self-Supervised Vision Transformers
Sungchul Kim
 
Actor three languages
Actor three languagesActor three languages
Actor three languages
Reidar Sollid
 
250324_Thuy_Labseminar[3D Denoisers are Good 2D Teachers: Molecular Pretraini...
250324_Thuy_Labseminar[3D Denoisers are Good 2D Teachers: Molecular Pretraini...250324_Thuy_Labseminar[3D Denoisers are Good 2D Teachers: Molecular Pretraini...
250324_Thuy_Labseminar[3D Denoisers are Good 2D Teachers: Molecular Pretraini...
thanhdowork
 
JumbleDB *Redis With Gears* Alon Spiegel
JumbleDB *Redis With Gears* Alon SpiegelJumbleDB *Redis With Gears* Alon Spiegel
JumbleDB *Redis With Gears* Alon Spiegel
Redis Labs
 
Ad

Recently uploaded (20)

Top-AI-Based-Tools-for-Game-Developers (1).pptx
Top-AI-Based-Tools-for-Game-Developers (1).pptxTop-AI-Based-Tools-for-Game-Developers (1).pptx
Top-AI-Based-Tools-for-Game-Developers (1).pptx
BR Softech
 
Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?
Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?
Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?
Christian Folini
 
DevOpsDays SLC - Platform Engineers are Product Managers.pptx
DevOpsDays SLC - Platform Engineers are Product Managers.pptxDevOpsDays SLC - Platform Engineers are Product Managers.pptx
DevOpsDays SLC - Platform Engineers are Product Managers.pptx
Justin Reock
 
Config 2025 presentation recap covering both days
Config 2025 presentation recap covering both daysConfig 2025 presentation recap covering both days
Config 2025 presentation recap covering both days
TrishAntoni1
 
An Overview of Salesforce Health Cloud & How is it Transforming Patient Care
An Overview of Salesforce Health Cloud & How is it Transforming Patient CareAn Overview of Salesforce Health Cloud & How is it Transforming Patient Care
An Overview of Salesforce Health Cloud & How is it Transforming Patient Care
Cyntexa
 
Kit-Works Team Study_팀스터디_김한솔_nuqs_20250509.pdf
Kit-Works Team Study_팀스터디_김한솔_nuqs_20250509.pdfKit-Works Team Study_팀스터디_김한솔_nuqs_20250509.pdf
Kit-Works Team Study_팀스터디_김한솔_nuqs_20250509.pdf
Wonjun Hwang
 
How to Install & Activate ListGrabber - eGrabber
How to Install & Activate ListGrabber - eGrabberHow to Install & Activate ListGrabber - eGrabber
How to Install & Activate ListGrabber - eGrabber
eGrabber
 
AI-proof your career by Olivier Vroom and David WIlliamson
AI-proof your career by Olivier Vroom and David WIlliamsonAI-proof your career by Olivier Vroom and David WIlliamson
AI-proof your career by Olivier Vroom and David WIlliamson
UXPA Boston
 
fennec fox optimization algorithm for optimal solution
fennec fox optimization algorithm for optimal solutionfennec fox optimization algorithm for optimal solution
fennec fox optimization algorithm for optimal solution
shallal2
 
Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Kit-Works Team Study_아직도 Dockefile.pdf_김성호Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Wonjun Hwang
 
Mastering Testing in the Modern F&B Landscape
Mastering Testing in the Modern F&B LandscapeMastering Testing in the Modern F&B Landscape
Mastering Testing in the Modern F&B Landscape
marketing943205
 
Q1 2025 Dropbox Earnings and Investor Presentation
Q1 2025 Dropbox Earnings and Investor PresentationQ1 2025 Dropbox Earnings and Investor Presentation
Q1 2025 Dropbox Earnings and Investor Presentation
Dropbox
 
Slack like a pro: strategies for 10x engineering teams
Slack like a pro: strategies for 10x engineering teamsSlack like a pro: strategies for 10x engineering teams
Slack like a pro: strategies for 10x engineering teams
Nacho Cougil
 
Dark Dynamism: drones, dark factories and deurbanization
Dark Dynamism: drones, dark factories and deurbanizationDark Dynamism: drones, dark factories and deurbanization
Dark Dynamism: drones, dark factories and deurbanization
Jakub Šimek
 
Smart Investments Leveraging Agentic AI for Real Estate Success.pptx
Smart Investments Leveraging Agentic AI for Real Estate Success.pptxSmart Investments Leveraging Agentic AI for Real Estate Success.pptx
Smart Investments Leveraging Agentic AI for Real Estate Success.pptx
Seasia Infotech
 
Bepents tech services - a premier cybersecurity consulting firm
Bepents tech services - a premier cybersecurity consulting firmBepents tech services - a premier cybersecurity consulting firm
Bepents tech services - a premier cybersecurity consulting firm
Benard76
 
Building the Customer Identity Community, Together.pdf
Building the Customer Identity Community, Together.pdfBuilding the Customer Identity Community, Together.pdf
Building the Customer Identity Community, Together.pdf
Cheryl Hung
 
May Patch Tuesday
May Patch TuesdayMay Patch Tuesday
May Patch Tuesday
Ivanti
 
Com fer un pla de gestió de dades amb l'eiNa DMP (en anglès)
Com fer un pla de gestió de dades amb l'eiNa DMP (en anglès)Com fer un pla de gestió de dades amb l'eiNa DMP (en anglès)
Com fer un pla de gestió de dades amb l'eiNa DMP (en anglès)
CSUC - Consorci de Serveis Universitaris de Catalunya
 
Could Virtual Threads cast away the usage of Kotlin Coroutines - DevoxxUK2025
Could Virtual Threads cast away the usage of Kotlin Coroutines - DevoxxUK2025Could Virtual Threads cast away the usage of Kotlin Coroutines - DevoxxUK2025
Could Virtual Threads cast away the usage of Kotlin Coroutines - DevoxxUK2025
João Esperancinha
 
Top-AI-Based-Tools-for-Game-Developers (1).pptx
Top-AI-Based-Tools-for-Game-Developers (1).pptxTop-AI-Based-Tools-for-Game-Developers (1).pptx
Top-AI-Based-Tools-for-Game-Developers (1).pptx
BR Softech
 
Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?
Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?
Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?
Christian Folini
 
DevOpsDays SLC - Platform Engineers are Product Managers.pptx
DevOpsDays SLC - Platform Engineers are Product Managers.pptxDevOpsDays SLC - Platform Engineers are Product Managers.pptx
DevOpsDays SLC - Platform Engineers are Product Managers.pptx
Justin Reock
 
Config 2025 presentation recap covering both days
Config 2025 presentation recap covering both daysConfig 2025 presentation recap covering both days
Config 2025 presentation recap covering both days
TrishAntoni1
 
An Overview of Salesforce Health Cloud & How is it Transforming Patient Care
An Overview of Salesforce Health Cloud & How is it Transforming Patient CareAn Overview of Salesforce Health Cloud & How is it Transforming Patient Care
An Overview of Salesforce Health Cloud & How is it Transforming Patient Care
Cyntexa
 
Kit-Works Team Study_팀스터디_김한솔_nuqs_20250509.pdf
Kit-Works Team Study_팀스터디_김한솔_nuqs_20250509.pdfKit-Works Team Study_팀스터디_김한솔_nuqs_20250509.pdf
Kit-Works Team Study_팀스터디_김한솔_nuqs_20250509.pdf
Wonjun Hwang
 
How to Install & Activate ListGrabber - eGrabber
How to Install & Activate ListGrabber - eGrabberHow to Install & Activate ListGrabber - eGrabber
How to Install & Activate ListGrabber - eGrabber
eGrabber
 
AI-proof your career by Olivier Vroom and David WIlliamson
AI-proof your career by Olivier Vroom and David WIlliamsonAI-proof your career by Olivier Vroom and David WIlliamson
AI-proof your career by Olivier Vroom and David WIlliamson
UXPA Boston
 
fennec fox optimization algorithm for optimal solution
fennec fox optimization algorithm for optimal solutionfennec fox optimization algorithm for optimal solution
fennec fox optimization algorithm for optimal solution
shallal2
 
Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Kit-Works Team Study_아직도 Dockefile.pdf_김성호Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Wonjun Hwang
 
Mastering Testing in the Modern F&B Landscape
Mastering Testing in the Modern F&B LandscapeMastering Testing in the Modern F&B Landscape
Mastering Testing in the Modern F&B Landscape
marketing943205
 
Q1 2025 Dropbox Earnings and Investor Presentation
Q1 2025 Dropbox Earnings and Investor PresentationQ1 2025 Dropbox Earnings and Investor Presentation
Q1 2025 Dropbox Earnings and Investor Presentation
Dropbox
 
Slack like a pro: strategies for 10x engineering teams
Slack like a pro: strategies for 10x engineering teamsSlack like a pro: strategies for 10x engineering teams
Slack like a pro: strategies for 10x engineering teams
Nacho Cougil
 
Dark Dynamism: drones, dark factories and deurbanization
Dark Dynamism: drones, dark factories and deurbanizationDark Dynamism: drones, dark factories and deurbanization
Dark Dynamism: drones, dark factories and deurbanization
Jakub Šimek
 
Smart Investments Leveraging Agentic AI for Real Estate Success.pptx
Smart Investments Leveraging Agentic AI for Real Estate Success.pptxSmart Investments Leveraging Agentic AI for Real Estate Success.pptx
Smart Investments Leveraging Agentic AI for Real Estate Success.pptx
Seasia Infotech
 
Bepents tech services - a premier cybersecurity consulting firm
Bepents tech services - a premier cybersecurity consulting firmBepents tech services - a premier cybersecurity consulting firm
Bepents tech services - a premier cybersecurity consulting firm
Benard76
 
Building the Customer Identity Community, Together.pdf
Building the Customer Identity Community, Together.pdfBuilding the Customer Identity Community, Together.pdf
Building the Customer Identity Community, Together.pdf
Cheryl Hung
 
May Patch Tuesday
May Patch TuesdayMay Patch Tuesday
May Patch Tuesday
Ivanti
 
Could Virtual Threads cast away the usage of Kotlin Coroutines - DevoxxUK2025
Could Virtual Threads cast away the usage of Kotlin Coroutines - DevoxxUK2025Could Virtual Threads cast away the usage of Kotlin Coroutines - DevoxxUK2025
Could Virtual Threads cast away the usage of Kotlin Coroutines - DevoxxUK2025
João Esperancinha
 
Ad

Lecture 1 graphical models

  翻译: