Examples of priorSample()


Examples of aima.core.probability.bayes.approx.PriorSample.priorSample()

        .constructCloudySprinklerRainWetGrassNetwork();
    MockRandomizer r = new MockRandomizer(
        new double[] { 0.5, 0.5, 0.5, 0.5 });

    PriorSample ps = new PriorSample(r);
    Map<RandomVariable, Object> event = ps.priorSample(bn);

    Assert.assertEquals(4, event.keySet().size());
    Assert.assertEquals(Boolean.TRUE, event.get(ExampleRV.CLOUDY_RV));
    Assert.assertEquals(Boolean.FALSE, event.get(ExampleRV.SPRINKLER_RV));
    Assert.assertEquals(Boolean.TRUE, event.get(ExampleRV.RAIN_RV));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.