1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
################################################################################
# Copyright (C) 2014 Jaakko Luttinen
#
# This file is licensed under the MIT License.
################################################################################
"""
Unit tests for `poisson` module.
"""
import numpy as np
import scipy
from bayespy.nodes import Poisson
from bayespy.nodes import Gamma
from bayespy.utils import random
from bayespy.utils.misc import TestCase
class TestPoisson(TestCase):
"""
Unit tests for Poisson node
"""
def test_init(self):
"""
Test the creation of Poisson nodes.
"""
# Some simple initializations
X = Poisson(12.8)
X = Poisson(Gamma(43, 24))
# Check that plates are correct
X = Poisson(np.ones((2,3)))
self.assertEqual(X.plates,
(2,3))
X = Poisson(Gamma(1, 1, plates=(2,3)))
self.assertEqual(X.plates,
(2,3))
# Invalid rate
self.assertRaises(ValueError,
Poisson,
-0.1)
# Inconsistent plates
self.assertRaises(ValueError,
Poisson,
np.ones(3),
plates=(2,))
# Explicit plates too small
self.assertRaises(ValueError,
Poisson,
np.ones(3),
plates=(1,))
pass
def test_moments(self):
"""
Test the moments of Poisson nodes.
"""
# Simple test
X = Poisson(12.8)
u = X._message_to_child()
self.assertEqual(len(u),
1)
self.assertAllClose(u[0],
12.8)
# Test plates in rate
X = Poisson(12.8*np.ones((2,3)))
u = X._message_to_child()
self.assertAllClose(u[0],
12.8*np.ones((2,3)))
# Test with gamma prior
alpha = Gamma(5, 2)
r = np.exp(alpha._message_to_child()[1])
X = Poisson(alpha)
u = X._message_to_child()
self.assertAllClose(u[0],
r)
# Test with broadcasted plates in parents
X = Poisson(Gamma(5, 2, plates=(2,3)))
u = X._message_to_child()
self.assertAllClose(u[0]*np.ones((2,3)),
r*np.ones((2,3)))
pass
|