Ejemplo n.º 1
0
 def test_init_from_noize(self):
     with models.multidimensional_model()[1]:
         approx = Empirical.from_noise(100)
         assert approx.histogram.eval().shape == (100, 6)
Ejemplo n.º 2
0
def test_from_empirical(another_simple_model):
    with another_simple_model:
        emp = Empirical.from_noise(1000)
        svgd = SVGD.from_empirical(emp)
        svgd.fit(20)
Ejemplo n.º 3
0
def test_from_empirical(another_simple_model):
    with another_simple_model:
        emp = Empirical.from_noise(1000)
        svgd = SVGD.from_empirical(emp)
        svgd.fit(20)