Skip to main content

Tutorial 1: Introduction to Bayesian Statistics

Difficulty level
Beginner

This tutorial provides an introduction to Bayesian statistics and covers developing a Bayesian model for localizing sounds based on audio and visual cues. This model will combine prior information about where sounds generally originate with sensory information about the likelihood that a specific sound came from a particular location. The resulting posterior distribution not only allows us to make optimal decision about the sound's origin, but also lets us quantify how uncertain that decision is. Bayesian techniques are therefore useful normative models: the behavior of human or animal subjects can be compared against these models to determine how efficiently they make use of information.

Topics covered in this lesson
  • Implement a Gaussian distribution
  • Use Bayes' Theorem to find the posterior from a Gaussian-distributed prior and likelihood.
  • Change the likelihood mean and variance and observe how posterior changes.
  • Advanced (optional): Observe what happens if the prior is a mixture of two gaussians?
Prerequisites

Experience with Python Programming Language

Back to the course