Calculating Probability
Moose Gimmick
Listing 2 uses the CPAN Moose module, which saves me from having to code the Distrib
constructor in Perl. However, the code instead needs to use has
(line 3) to declare and initialize the class attributes. This is just a neat gimmick in the present case; for more attributes, however, the code would be much leaner than manually creating classes.
The set()
method expects the name of a hypothesis (e.g., BB
) and its a priori probability and stores this in the object's internal values
array. To multiply a hypothesis value by a constant value, both are passed to mult()
; it finds the previously stored value in values
and multiplies it with the value passed in for $prob
.
The normalize()
method iterates over all values previously inserted into the hash, adds them up in $sum
, and then divides all the values by the sum. Thus, the new sum of all probability values after a multiplication is again 1. Each value can thus be interpreted as a probability between 0 and 1. At the bottom of the module, prob()
finds the value for the searched-for hypothesis by retrieving the hash value using the values()
method. The latter has been automatically generated by Moose and returns the value stored under the key of the desired hypothesis.
More Abstraction
If you perform several such tests for various problems, you will identify a pattern: After establishing the hypotheses, the probabilities of all defined hypotheses are always multiplied by the likelihood of newly incoming data. It makes sense (as shown in Think Bayes [3]) to define a class derived from Distrib
by the name of HypoTest
, much as in Listing 3. The class uses an update()
method to update all the values for all hypotheses, based on the probabilities of incoming data.
Listing 3
HypoTest.pm
HypoTest
also relies on classes derived from it (e.g., CardHypoTest
in Listing 4) to overload the abstract likelihood()
method and return the value for P(D|H) based on the probability of the additionally available data D under the assumption that hypothesis H is true.
Listing 4
hypotest
The HypoTest
framework in Listing 3 calls the likelihood()
method repeatedly to obtain the data probabilities under the assumption of individual hypotheses before storing them in the Distrib
distribution. The framework further provides a print()
method, which is used to output the values of all the updated probabilities for each hypothesis.
Testing Hypotheses
In Listing 4, likelihood()
accepts the letter R from the main program as $data
– to record a drawn card with red front as an additional condition. Then, based on the hypothesis also passed in (RR
, RB
, BB
), it computes how likely it is that the test candidate will look at a red surface: 1 (i.e., 100 percent) for RR
, 0.5 for RB
, and 0 for BB
.
For this calculation, the function uses a regular expression that counts the number of Rs in the hypothesis and divides the result by 2 as a floating-point value, so that Perl does not perform integer division and dump the remainder.
Finally, hypotest
outputs the probabilities for all hypotheses in the distribution using the print()
method from the HypoTest
module and correctly reports that the red-red card will appear in 2/3 of all cases:
$ ./hypotest RC 0.333333333333333 RR: 0.666666666666667 BB 0
In other words, the test candidate, who has just drawn a card with a red front and now turns over this card, will see a red back with probability of 2/3.
« Previous 1 2 3 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
Kubuntu Focus Announces XE Gen 2 Linux Laptop
Another Kubuntu-based laptop has arrived to be your next ultra-portable powerhouse with a Linux heart.
-
MNT Seeks Financial Backing for New Seven-Inch Linux Laptop
MNT Pocket Reform is a tiny laptop that is modular, upgradable, recyclable, reusable, and ships with Debian Linux.
-
Ubuntu Flatpak Remix Adds Flatpak Support Preinstalled
If you're looking for a version of Ubuntu that includes Flatpak support out of the box, there's one clear option.
-
Gnome 44 Release Candidate Now Available
The Gnome 44 release candidate has officially arrived and adds a few changes into the mix.
-
Flathub Vying to Become the Standard Linux App Store
If the Flathub team has any say in the matter, their product will become the default tool for installing Linux apps in 2023.
-
Debian 12 to Ship with KDE Plasma 5.27
The Debian development team has shifted to the latest version of KDE for their testing branch.
-
Planet Computers Launches ARM-based Linux Desktop PCs
The firm that originally released a line of mobile keyboards has taken a different direction and has developed a new line of out-of-the-box mini Linux desktop computers.
-
Ubuntu No Longer Shipping with Flatpak
In a move that probably won’t come as a shock to many, Ubuntu and all of its official spins will no longer ship with Flatpak installed.
-
openSUSE Leap 15.5 Beta Now Available
The final version of the Leap 15 series of openSUSE is available for beta testing and offers only new software versions.
-
Linux Kernel 6.2 Released with New Hardware Support
Find out what's new in the most recent release from Linus Torvalds and the Linux kernel team.