예제 #1
0
    def query_model(self):
        if flip(0.9):
            self.a = uniform(0, 1)
        else:
            self.a = 0.7

        self.b = flip(self.a)
예제 #2
0
    def query_model(self):
        if flip(0.9):
            self.a = uniform(0, 1)
        else:
            self.a = 0.7

        self.b = flip(self.a)
예제 #3
0
 def sample(self):
     return uniform(low, high)
예제 #4
0
 def sample(self):
     return uniform(low, high)
예제 #5
0
파일: uniform.py 프로젝트: jhamrick/pystoch
 def query_model(self):
     self.val = uniform(0, 1)
예제 #6
0
파일: test4.py 프로젝트: jhamrick/pystoch
 def query_model(self):
     self.coin_weight = uniform(0, 1)
     self.sampled_data = [
         self.coin(self.coin_weight) for i in xrange(self.num_flips)
     ]
예제 #7
0
파일: test4.py 프로젝트: jhamrick/pystoch
 def query_model(self):
     self.coin_weight = uniform(0, 1)
     self.sampled_data = [self.coin(self.coin_weight) for i in xrange(self.num_flips)]