Created
June 13, 2015 22:20
-
-
Save mattskone/c88929ab89fabf2c0eb1 to your computer and use it in GitHub Desktop.
Solution to Udacity course "Intro to Statistics" with Sebastian Thrun, lesson "Problem Set 2: Probability", final video
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #FlipPredictor | |
| #A coin is drawn at random from a bag of coins of varying probabilities | |
| #Each coin has the same chance of being drawn | |
| #Your class FlipPredictor will be initialized with a list of the probability of | |
| #heads for each coin. This list of probabilities can be accessed as self.coins | |
| #in the functions you must write. The function update will be called after every | |
| #flip to enable you to update your estimate of the probability of each coin being | |
| #the selected coin. The function pheads may be called and any time and will | |
| #return your best estimate of the next flip landing on heads. | |
| from __future__ import division | |
| class FlipPredictor(object): | |
| def __init__(self,coins): | |
| self.coins=coins | |
| n=len(coins) | |
| self.probs=[1/n]*n | |
| def pheads(self): | |
| #Write a function that returns | |
| #the probability of the next flip being heads | |
| return sum([self.probs[i] * self.coins[i] for i in range(len(self.coins))]) | |
| def update(self,result): | |
| #Write a function the updates | |
| #the probabilities of flipping each | |
| accumulator = [] | |
| for i in range(len(self.probs)): | |
| pfc = self.coins[i] # probability of the flip, given the coin (assuming heads) | |
| pf = sum([self.probs[j] * self.coins[j] for j in range(len(self.coins))]) | |
| if result == 'T': # ...unless it's tails | |
| pfc = 1 - pfc | |
| pf = sum([self.probs[j] * (1 - self.coins[j]) for j in range(len(self.coins))]) | |
| # Bayes rule: P(c|f) = P(f|c) * P(c) / P(f) | |
| accumulator.append(pfc * self.probs[i] / pf) | |
| self.probs = accumulator | |
| #The code below this line tests your implementation. | |
| #You need not change it | |
| #You may add additional test cases or otherwise modify if desired | |
| def test(coins,flips): | |
| f=FlipPredictor(coins) | |
| guesses=[] | |
| for flip in flips: | |
| f.update(flip) | |
| guesses.append(f.pheads()) | |
| return guesses | |
| def maxdiff(l1,l2): | |
| return max([abs(x-y) for x,y in zip(l1,l2)]) | |
| testcases=[ | |
| (([0.5,0.4,0.3],'HHTH'),[0.4166666666666667, 0.432, 0.42183098591549295, 0.43639398998330553]), | |
| (([0.14,0.32,0.42,0.81,0.21],'HHHTTTHHH'),[0.5255789473684211, 0.6512136991788505, 0.7295055220497553, 0.6187139453483192, 0.4823974597714815, 0.3895729901052968, 0.46081730193074644, 0.5444108434105802, 0.6297110187222278]), | |
| (([0.14,0.32,0.42,0.81,0.21],'TTTHHHHHH'),[0.2907741935483871, 0.25157009005730924, 0.23136284577678012, 0.2766575695593804, 0.3296000585271367, 0.38957299010529806, 0.4608173019307465, 0.5444108434105804, 0.6297110187222278]), | |
| (([0.12,0.45,0.23,0.99,0.35,0.36],'THHTHTTH'),[0.28514285714285714, 0.3378256513026052, 0.380956725493104, 0.3518717367468537, 0.37500429586037076, 0.36528605387582497, 0.3555106542906013, 0.37479179323540324]), | |
| (([0.03,0.32,0.59,0.53,0.55,0.42,0.65],'HHTHTTHTHHT'),[0.528705501618123, 0.5522060353798126, 0.5337142767315369, 0.5521920592821695, 0.5348391689038525, 0.5152373451083692, 0.535385450497415, 0.5168208803156963, 0.5357708613431963, 0.5510509656933194, 0.536055356823069])] | |
| for inputs,output in testcases: | |
| if maxdiff(test(*inputs),output)<0.001: | |
| print 'Correct' | |
| else: print 'Incorrect' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment