Defining a Bayesian regression model

You have been tasked with building a predictive model to forecast the daily number of clicks based on the numbers of clothes and sneakers ads displayed to the users. You decide to use Bayesian linear regression. You've defined your model as follows:

Model definition specifying the number of clicks to have a normal distribution with the mean β0 + β1 * clothes-ads-shown + β2 * sneakers-ads-shown, and some standard deviation. The prior for β0 is N(0, 001), for β1 it's N(0.1, 0.3) and for β2 it's N(0.2, 0.2).

Which of the following is false of your model?

This exercise is part of the course

Bayesian Data Analysis in Python

View Course

Hands-on interactive exercise

Turn theory into action with one of our interactive exercises

Start Exercise