Esempio n. 1
0
 def test_chain_with_bad_chain_fails_on_access2(self):
     c = Chain(self.bad, self.p, self.n)
     with pytest.raises(AssertionError):
         c.get_data(self.p[0])
Esempio n. 2
0
 def test_chain_with_bad_weights3(self):
     with pytest.raises(AssertionError):
         w = self.w.copy()
         w[10] = np.nan
         Chain(self.d, self.p, self.n, weights=w)
Esempio n. 3
0
 def test_good_grid(self):
     Chain(self.d, self.p, self.n, grid=False)
Esempio n. 4
0
 def test_bad_grid3(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, grid="False")
Esempio n. 5
0
 def test_chain_with_bad_params3(self):
     with pytest.raises(AssertionError):
         Chain(self.d, None, self.n)
Esempio n. 6
0
 def test_chain_with_bad_chain_initial_success2(self):
     c = Chain(self.bad, self.p, self.n)
     c.get_data(1)
Esempio n. 7
0
 def test_bad_posterior5(self):
     posterior = np.ones(100)
     posterior[0] = -np.inf
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, posterior=posterior)
Esempio n. 8
0
 def test_chain_with_bad_params1(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p[:-1], self.n)
Esempio n. 9
0
 def test_bad_posterior2(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, posterior=np.ones(50))
Esempio n. 10
0
 def test_good_chain(self):
     Chain(self.d, self.p, self.n)
Esempio n. 11
0
 def test_good_posterior3(self):
     Chain(self.d, self.p, self.n, posterior=np.ones((1, 100)))
Esempio n. 12
0
 def test_good_posterior2(self):
     Chain(self.d, self.p, self.n, posterior=np.ones((100, 1)))
Esempio n. 13
0
 def test_bad_walkers4(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, walkers=2.5)
Esempio n. 14
0
 def test_chain_with_bad_weights4(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, weights=np.ones((50, 2)))
Esempio n. 15
0
 def test_good_num_free_params2(self):
     Chain(self.d, self.p, self.n, num_free_params=2.0)
Esempio n. 16
0
 def test_chain_with_bad_name2(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, None)
Esempio n. 17
0
 def test_bad_num_free_params4(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, num_free_params=-10)
Esempio n. 18
0
 def test_chain_with_bad_params2(self):
     with pytest.raises(AssertionError):
         Chain(self.d, ["A", "B", 0], self.n)
Esempio n. 19
0
 def test_good_chain_weights1(self):
     Chain(self.d, self.p, self.n, self.w)
Esempio n. 20
0
 def test_chain_with_bad_chain_initial_success1(self):
     Chain(self.bad, self.p, self.n)
Esempio n. 21
0
 def test_good_num_eff_data_points2(self):
     Chain(self.d, self.p, self.n, num_eff_data_points=20.4)
Esempio n. 22
0
 def test_chain_with_bad_chain_fails_on_access2(self):
     c = Chain(self.bad, self.p, self.n)
     with pytest.raises(AssertionError):
         c.get_data(self.p[0])
Esempio n. 23
0
 def test_bad_num_eff_data_points3(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, num_eff_data_points=-100)
Esempio n. 24
0
 def test_bad_grid2(self):
     with pytest.raises(AssertionError):
         Chain(self.d, self.p, self.n, grid=None)
Esempio n. 25
0
 def test_good_chain_weights3(self):
     Chain(self.d, self.p, self.n, self.w[None].T)
Esempio n. 26
0
 def test_good_walkers1(self):
     Chain(self.d, self.p, self.n, walkers=10)
Esempio n. 27
0
 def test_chain_with_bad_chain_initial_success2(self):
     c = Chain(self.bad, self.p, self.n)
     c.get_data(1)