Mastering Probabilistic Graphical Models Using Python
eBook - ePub

Mastering Probabilistic Graphical Models Using Python

Ankur Ankan, Abinash Panda, Abinash Panda

Partager le livre
  1. 284 pages
  2. English
  3. ePUB (adapté aux mobiles)
  4. Disponible sur iOS et Android
eBook - ePub

Mastering Probabilistic Graphical Models Using Python

Ankur Ankan, Abinash Panda, Abinash Panda

DĂ©tails du livre
Aperçu du livre
Table des matiĂšres
Citations

À propos de ce livre

About This Book

  • Gain in-depth knowledge of Probabilistic Graphical Models
  • Model time-series problems using Dynamic Bayesian Networks
  • A practical guide to help you apply PGMs to real-world problems

Who This Book Is For

If you are a researcher or a machine learning enthusiast, or are working in the data science field and have a basic idea of Bayesian learning or probabilistic graphical models, this book will help you to understand the details of graphical models and use them in your data science problems.

What You Will Learn

  • Get to know the basics of probability theory and graph theory
  • Work with Markov networks
  • Implement Bayesian networks
  • Exact inference techniques in graphical models such as the variable elimination algorithm
  • Understand approximate inference techniques in graphical models such as message passing algorithms
  • Sampling algorithms in graphical models
  • Grasp details of Naive Bayes with real-world examples
  • Deploy probabilistic graphical models using various libraries in Python
  • Gain working details of Hidden Markov models with real-world examples

In Detail

Probabilistic graphical models is a technique in machine learning that uses the concepts of graph theory to concisely represent and optimally predict values in our data problems.

Graphical models gives us techniques to find complex patterns in the data and are widely used in the field of speech recognition, information extraction, image segmentation, and modeling gene regulatory networks.

This book starts with the basics of probability theory and graph theory, then goes on to discuss various models and inference algorithms. All the different types of models are discussed along with code examples to create and modify them, and also run different inference algorithms on them. There is an entire chapter that goes on to cover Naive Bayes model and Hidden Markov models. These models have been thoroughly discussed using real-world examples.

Foire aux questions

Comment puis-je résilier mon abonnement ?
Il vous suffit de vous rendre dans la section compte dans paramĂštres et de cliquer sur « RĂ©silier l’abonnement ». C’est aussi simple que cela ! Une fois que vous aurez rĂ©siliĂ© votre abonnement, il restera actif pour le reste de la pĂ©riode pour laquelle vous avez payĂ©. DĂ©couvrez-en plus ici.
Puis-je / comment puis-je télécharger des livres ?
Pour le moment, tous nos livres en format ePub adaptĂ©s aux mobiles peuvent ĂȘtre tĂ©lĂ©chargĂ©s via l’application. La plupart de nos PDF sont Ă©galement disponibles en tĂ©lĂ©chargement et les autres seront tĂ©lĂ©chargeables trĂšs prochainement. DĂ©couvrez-en plus ici.
Quelle est la différence entre les formules tarifaires ?
Les deux abonnements vous donnent un accĂšs complet Ă  la bibliothĂšque et Ă  toutes les fonctionnalitĂ©s de Perlego. Les seules diffĂ©rences sont les tarifs ainsi que la pĂ©riode d’abonnement : avec l’abonnement annuel, vous Ă©conomiserez environ 30 % par rapport Ă  12 mois d’abonnement mensuel.
Qu’est-ce que Perlego ?
Nous sommes un service d’abonnement Ă  des ouvrages universitaires en ligne, oĂč vous pouvez accĂ©der Ă  toute une bibliothĂšque pour un prix infĂ©rieur Ă  celui d’un seul livre par mois. Avec plus d’un million de livres sur plus de 1 000 sujets, nous avons ce qu’il vous faut ! DĂ©couvrez-en plus ici.
Prenez-vous en charge la synthÚse vocale ?
Recherchez le symbole Écouter sur votre prochain livre pour voir si vous pouvez l’écouter. L’outil Écouter lit le texte Ă  haute voix pour vous, en surlignant le passage qui est en cours de lecture. Vous pouvez le mettre sur pause, l’accĂ©lĂ©rer ou le ralentir. DĂ©couvrez-en plus ici.
Est-ce que Mastering Probabilistic Graphical Models Using Python est un PDF/ePUB en ligne ?
Oui, vous pouvez accĂ©der Ă  Mastering Probabilistic Graphical Models Using Python par Ankur Ankan, Abinash Panda, Abinash Panda en format PDF et/ou ePUB ainsi qu’à d’autres livres populaires dans Ciencia de la computaciĂłn et VirtualizaciĂłn. Nous disposons de plus d’un million d’ouvrages Ă  dĂ©couvrir dans notre catalogue.

Informations

Année
2015
ISBN
9781784395216

Mastering Probabilistic Graphical Models Using Python


Table of Contents

Mastering Probabilistic Graphical Models Using Python
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Support files, eBooks, discount offers, and more
Why subscribe?
Free access for Packt account holders
Preface
What this book covers
What you need for this book
Who this book is for
Conventions
Reader feedback
Customer support
Downloading the example code
Downloading the color images of this book
Errata
Piracy
Questions
1. Bayesian Network Fundamentals
Probability theory
Random variable
Independence and conditional independence
Installing tools
IPython
pgmpy
Representing independencies using pgmpy
Representing joint probability distributions using pgmpy
Conditional probability distribution
Representing CPDs using pgmpy
Graph theory
Nodes and edges
Walk, paths, and trails
Bayesian models
Representation
Factorization of a distribution over a network
Implementing Bayesian networks using pgmpy
Bayesian model representation
Reasoning pattern in Bayesian networks
D-separation
Direct connection
Indirect connection
Relating graphs and distributions
IMAP
IMAP to factorization
CPD representations
Deterministic CPDs
Context-specific CPDs
Tree CPD
Rule CPD
Summary
2. Markov Network Fundamentals
Introducing the Markov network
Parameterizing a Markov network – factor
Factor operations
Gibbs distributions and Markov networks
The factor graph
Independencies in Markov networks
Constructing graphs from distributions
Bayesian and Markov networks
Converting Bayesian models into Markov models
Converting Markov models into Bayesian models
Chordal graphs
Summary
3. Inference – Asking Questions to Models
Inference
Complexity of inference
Variable elimination
Analysis of variable elimination
Finding elimination ordering
Using the chordal graph property of induced graphs
Minimum fill/size/weight/search
Belief propagation
Clique tree
Constructing a clique tree
Message passing
Clique tree calibration
Message passing with division
Factor division
Querying variables that are not in the same cluster
MAP inference
MAP using variable elimination
Factor maximization
MAP using belief propagation
Finding the most probable assignment
Predictions from the model using pgmpy
A comparison of variable elimination and belief propagation
Summary
4. Approximate Inference
The optimization problem
The energy function
Exact inference as an optimization
The propagation-based approximation algorithm
Cluster graph belief propagation
Constructing cluster graphs
Pairwise Markov networks
Bethe cluster graph
Propaga...

Table des matiĂšres