Starting from:

$25

CSC384- Assignment 4 Solved

Silent Policy: A silent policy will take effect 24 hours before this assignment is due, i.e. no question about this assignment will be answered, whether it is asked on the discussion board, via email or in person.

Late Policy: 10% per day after the use of 3 grace days.

Total Marks: This part of the assignment represents 11% of the course grade.

Handing in this Assignment

What to hand in on paper: Nothing.

What to hand in electronically: You must submit your assignment electronically. Download code.zip which contains bnetbase.py and carDiagnosis.py. Modify bnetbase.py so that it solves Question 1, which specified in this document. Once you are done with this, answer Question 2 using this Google form https://forms.gle/suJ2eVbusTimJb359. Identify yourself in the Google form using your teach.cs ID. Submit your modified files bnetbase.py as well as acknowledgment form.pdf using MarkUs Your login to MarkUs is your teach.cs username and password. It is your responsibility to include all necessary files in your submission. You can make as many submissions to MarkUs or to Google Forms as you like while you still have grace days; the number of grace days you use will be determined by the time of your final submission. Only your last submission (to Google Forms or to MarkUs) will be marked.

Your code, and the answers you provide to the Google Form, will be tested electronically. You will be supplied with a testing script that will run a subset of the tests. If your code fails all of the tests performed by the script (using Python version 3.7), you will receive zero marks. It’s up to you to figure out further test cases to further test your code – that’s part of the assignment!

When your code is submitted, we will run a more extensive set of tests which will include the tests run in the provided testing script and a number of other tests. You have to pass all of these more elaborate tests to obtain full marks on the assignment.

Your code will not be evaluated for partial correctness, it either works or it doesn’t. It is your responsibility to hand in something that passes at least some of the tests in the provided testing script.

•   Make certain that your code runs on teach.cs using python3 (version 3.7) using only standard imports. This version is installed as “python3” on teach.cs. Your code will be tested using this version and you will receive zero marks if it does not run using this version.

•   Do not add any non-standard imports from within the python file you submit (the imports that are already in the template files must remain). Once again, non-standard imports will cause your code to fail the testing and you will receive zero marks.

•   Do not change the supplied starter code. Your code will be tested using the original starter code, and if it relies on changes you made to the starter code, you will receive zero marks.

Clarification Page: Important corrections (hopefully few or none) and clarifications to the assignment will be posted on the Assignment 4 Clarification page, linked from the CSC384 A4 web page, also found at: http://www.teach.cs.toronto.edu/~csc384h/winter/Assignments/A4/a4_faq.html. You are responsible for monitoring the A4 Clarification page. Questions: Questions about the assignment should be asked on Piazza: https://piazza.com/utoronto.ca/winter2020/csc384/home.

You may also reach out to the Assignment 4 TAs, names here, or one of the instructors. Please place ”A4” and ”CSC384” in the subject line of your email.

Introduction
In this assignment you will implement variable elimination for Bayes Nets.

What is supplied: Python code that implements Variable, Factor, and BN objects. The file bnetbase.py contains the class definitions for these objects. The code supports representing factors as tables of values indexed by various settings of the variables in the factor’s scope.

The template file bnetbase.py also contains function prototypes for the functions you must implement.

Question 1. Implement Variable Elimination (worth 60/100 marks)
Implement the following functions that operate on Factor objects and then use these functions to implement VE (variable elimination):

•   multiply factors (worth 10 points). This function takes as input a list of Factor objects; it creates and returns a new factor that is equal to the product of the factors in the list. Do not modify any of the input factors.

•   restrict factor (worth 10 points). This function takes as input a single factor, a variable V and a value d from the domain of that variable. It creates and returns a new factor that is the restriction of the input factor to the assignment V = d. Do not modify the input factor.

•   sum out variable (worth 10 points). This function takes as input a single factor, and a variable V; it creates and returns a new factor that is the result of summing V out of the input factor. Do not modify the input factor.

•   VE (worth 30 points). This function takes as input a Bayes Net object (object of class BN), a variable that is the query variable Q, and a list of variables E that are the evidence variables (all of which have had some value set as evidence using the variable’s set evidence interface). Compute the probability of every possible assignment to Q given the evidence specified by the evidence settings of the evidence variables. Return these probabilities as a list, where every number corresponds the probability of one of Q’s possible values. Do not modify any factor of the input Bayes net.

Question 2: Problem Solving with your VE Implementaion (worth 40/100
marks)

For the following questions, you will submit your answers using the Google form that is located at https: //forms.gle/suJ2eVbusTimJb359.

1. Use your implementation to answer questions regarding the following Bayesian network. All variables are binary, with values Dom(A)= {a,a˜}, Dom(B)= {b,b˜}, etc.



The probability table values are as follows (probabilities add to one so you can compute the remaining probability values):

P(a)= 0.9

P(b|ah)= 1.0;P(b|ah˜)= 0.0;P(b|a˜;h)= 0.5;P(b|a˜h˜)= 0.6

P(c|bg)= 0.9;P(c|bg˜)= 0.9;P(c|b˜;g)= 0.1;P(c|b˜g˜)= 1.0

P(d|cf)= 0.0;P(d|cf˜)= 1.0;P(d|c˜; f)= 0.7;P(d|c˜f˜)= 0.2

P(e|c)= 0.2;P(e|c˜)= 0.4

P(f)= 0.1

P(g)= 1.0

P(h)= 0.5

P(i|b)= 0.3;P(i|b˜)= 0.9

Using your Variable Elimination implementation (or by hand!), compute the following probabilities and post these to the Google Form (worth 10 points):

(a)   P(b|a)

(b)   P(c|a)

(c)    P(c|ae˜)

(d)   P(c|af˜)

2. Next, examine the file carDiagnosis.py. This specifies a Bayes Net for diagnosing various reasons why a car might not start. The layout of this Bayes Net is shown below, and the various CPTs for the Net are specified in carDiagnosis.py as Factors:



Each variable of the Net is shown in a square box along with the values that the variable can take. For example, The variable BatteryVoltage (which is the variable bv in the file carDiagnosis.py) can take on one of three different values: “strong”, “weak” and “dead”.

The numbers and bars show the unconditional probabilities of the variables taking on their different values. For example, in the Net we have P(BatteryVoltage = dead) = 0.41. For the various CPTs for the Net, see carDiagnosis.py.

Using your Variable Elimination implementation (or based on inspection!), answer the following questions and post your answers to the Google Form:

(a)   (worth 5 points) Show a case of conditional independence in the Net where knowing someevidence item V1 = d1 makes another evidence item V2 = d2 irrelevant to the probability of some third variable V3. (Note that conditional independence requires that the independence holds for all values of V3).

(b)   (worth 5 points) Show a case of conditional independence in the Net where two variables areindependent given NO evidence at a third variable yet dependent given evidence at the third variable.

(c)    (worth 10 points) Show a sequence of accumulated evidence items V1 = d1,...,Vk = dk (i.e., each evidence item in the sequence is added to the previous evidence items) such that each additional evidence item increases the probability that some variable V has the value d. (That is, the probability of V = d increases monotonically as we add evidence items). What is P(V = d—V1 = d1,...,Vk = dk)?

(d)   (worth 10 points) Show a sequence of accumulated evidence items V1 = d1,...,Vk = dk (i.e., each evidence item in the sequence is added to the previous evidence items) such that each additional evidence item decreases the probability that some variable V has the value d. (That is, the probability of V = d decreases monotonically as we add evidence items). What is P(V = d—V1 = d1,...,Vk = dk)?

HAVE FUN and GOOD LUCK!

More products