コード例 #1
0
ファイル: unit_tests.py プロジェクト: smaslova/segway
    def test_negative_priors(self):
        virtual_evidence_coords = "[(0, 4), (2, 5)]"
        virtual_evidence_priors = "[{1: -0.8}, {0: 0.7}]"

        with self.assertRaises(ValueError):
            prepare_virtual_evidence(1, 0, 10, 4, virtual_evidence_coords,
                                     virtual_evidence_priors)
コード例 #2
0
ファイル: unit_tests.py プロジェクト: smaslova/segway
    def test_overlapping_labels(self):
        virtual_evidence_priors = "[{0: 0.2}, {0: 0.7}]"
        virtual_evidence_coords = "[(0, 100), (50, 150)]"

        with self.assertRaises(ValueError):
            prepare_virtual_evidence(1, 0, 800, 4, virtual_evidence_coords,
                                     virtual_evidence_priors)
コード例 #3
0
ファイル: unit_tests.py プロジェクト: smaslova/segway
    def test_priors_over_one(self):
        virtual_evidence_coords = "[(0, 4), (2, 5)]"
        virtual_evidence_priors = "[{1: 0.8}, {0: 0.7}]"

        # Only python 3 supports assetWarns, passes if there is an
        # AttributeError in python 2
        # Should be dropped once python 2 support is
        try:
            with self.assertWarns(VirtualEvidenceWarning):
                prepare_virtual_evidence(1, 0, 10, 4, virtual_evidence_coords,
                                         virtual_evidence_priors)
        except AttributeError:
            pass
コード例 #4
0
ファイル: unit_tests.py プロジェクト: smaslova/segway
    def test_zero_labels(self):
        virtual_evidence_coords = "[(0, 4), (4, 5)]"
        virtual_evidence_priors = "[{1: 0.8}, {0: 0}]"

        expected = prepare_virtual_evidence(1, 0, 5, 3,
                                            virtual_evidence_coords,
                                            virtual_evidence_priors)
        self.assertTrue((expected[4] == array([0, 0.5, 0.5])).all())
コード例 #5
0
ファイル: unit_tests.py プロジェクト: smaslova/segway
    def test_proper_downsampling(self):
        virtual_evidence_coords = "[(0, 4), (0, 2), (2, 4)]"
        virtual_evidence_priors = "[{0: 0.1}, {1: 0.5}, {2: 0.7}]"

        raw = prepare_virtual_evidence(1, 0, 5, 4, virtual_evidence_coords,
                                       virtual_evidence_priors)
        expected = array([[0.1, 0.5, 0.2, 0.2], [0.1, 0.5, 0.2, 0.2],
                          [0.1, 0.1, 0.7, 0.1], [0.1, 0.1, 0.7, 0.1],
                          [0, 0, 0, 0]])
        self.assertTrue(allclose(raw, expected))

        downsampled, presence = get_downsampled_virtual_evidence_data_and_presence(
            raw, resolution=5, num_labels=4)
        self.assertTrue(allclose(downsampled, array([0.1, 0.3, 0.45, 0.15])))
        print(presence)