Need help with your Discussion

Get a timely done, PLAGIARISM-FREE paper
from our highly-qualified writers!

glass
pen
clip
papers
heaphones

Two Approximate Inference Methods for Bayesian Networks Project

Two Approximate Inference Methods for Bayesian Networks Project

Two Approximate Inference Methods for Bayesian Networks Project

Description

In this assignment, you will implement two approximate inference methods for Bayesian networks, i.e., rejection sampling and Gibbs sampling in the given attached base code.  

Input:

Bayesian network is represented as a list of nodes.  Each node is represented as a list in the following order:

name: string

parent names: a list of strings. Can be an empty list

cpt: a conditional probability table represented as an array. Each entry corresponds to the conditional probability that the variable corresponding to this node is true. The rows are ordered such that the values of the node’s parent variable(s) are enumerated in the traditional way. That is, in a table, the rightmost variable alternates T, F, T, F, …; the variable to its left T, T, F, F, T, T, F, F, …; and so on.

The nodes in the network will be ordered corresponding to the network topology, i.e., parent nodes will always come before their children. For example, the sprinkler network in Figure 13.15 and on our slides, is represented as:

nodes = [[“Cloudy”, [], [0.5]],
[“Sprinkler”, [“Cloudy”], [0.1, 0.5]],
[“Rain”, [“Cloudy”], [0.8, 0.2]],
[“WetGrass”, [“Sprinkler”, “Rain”], [0.99, 0.9, 0.9, 0.0]]]
b = BayesNet(nodes)
b.print()

You can call b.print() to see the conditional probability tables organized for each node.

Output:

A query will ask you to compute a possibly conditional probability of a single variable such as P(Rain | Cloudy = false, Sprinkler = true). Queries will always be for a distribution, not a specific event’s probability.  

The following methods will be called for queries:

rejectionSampling(queryNodeName, evidence, N)

or

gibbsSampling(queryNodeName, evidence, N)

queryNodeName: a string for the query node’s name

evidence: a set of <node name:value> pairs

N: total number of iterations

For instance, given the network b, a sample Gibbs sampling query can be called and printed as follows:

out = b.gibbsSampling(“Rain”, {“Sprinkler”:True}, 100000)

print(out)

The output will look like:

> [0.299, 0.700]

Notes

You may (actually, should) implement helper methods, but do not change the class structure or the signatures of existing methods.

Have a similar assignment? "Place an order for your assignment and have exceptional work written by our team of experts, guaranteeing you A results."

Order Solution Now

Our Service Charter


1. Professional & Expert Writers: Eminence Papers only hires the best. Our writers are specially selected and recruited, after which they undergo further training to perfect their skills for specialization purposes. Moreover, our writers are holders of masters and Ph.D. degrees. They have impressive academic records, besides being native English speakers.

2. Top Quality Papers: Our customers are always guaranteed of papers that exceed their expectations. All our writers have +5 years of experience. This implies that all papers are written by individuals who are experts in their fields. In addition, the quality team reviews all the papers before sending them to the customers.

3. Plagiarism-Free Papers: All papers provided by Eminence Papers are written from scratch. Appropriate referencing and citation of key information are followed. Plagiarism checkers are used by the Quality assurance team and our editors just to double-check that there are no instances of plagiarism.

4. Timely Delivery: Time wasted is equivalent to a failed dedication and commitment. Eminence Papers are known for the timely delivery of any pending customer orders. Customers are well informed of the progress of their papers to ensure they keep track of what the writer is providing before the final draft is sent for grading.

5. Affordable Prices: Our prices are fairly structured to fit in all groups. Any customer willing to place their assignments with us can do so at very affordable prices. In addition, our customers enjoy regular discounts and bonuses.

6. 24/7 Customer Support: At Eminence Papers, we have put in place a team of experts who answer all customer inquiries promptly. The best part is the ever-availability of the team. Customers can make inquiries anytime.

We Can Write It for You! Enjoy 20% OFF on This Order. Use Code SAVE20

Stuck with your Assignment?

Enjoy 20% OFF Today
Use code SAVE20