Introduction to Bayesian Inference
Get introduced to the Bayesian Inference.
We'll cover the following...
We’ve implemented our quantum Bayesian network. It represents a passenger’s overall chance to survive the Titanic shipwreck. It considers two features, the passenger’s sex and whether the passenger was a child.
It’s time to use this network. We want to infer something we don’t already know. We perform inference.
Generally, statistical inference is the process of deducing properties about a population or probability distribution from data. This is why we build the entire network. We want to be able to make predictions about some new data from the data we already know.
Specifically, Bayesian inference is the process of deducing properties about a population or probability distribution from data using Bayes’ Theorem.
There are various questions we can answer with inference. We’ve already performed one type of inference, marginal inference. We calculated the overall probability of survival. Given our network with three variables, we tried to find the probability of one variable, Survival
.
The posterior inference is the second type of inference. It aims to find the posterior distribution ...