test_distribution_variable.py 2.2 KB
Newer Older
1
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2
#
3 4 5
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
6
#
7
#     http://www.apache.org/licenses/LICENSE-2.0
8
#
9 10 11 12 13 14 15 16 17 18 19 20 21 22
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import unittest

import paddle
from paddle.distribution import variable
from paddle.distribution import constraint

import parameterize as param

23 24
paddle.seed(2022)

25 26 27 28 29

@param.param_cls(
    (param.TEST_CASE_NAME, 'is_discrete', 'event_rank', 'constraint'),
    [('NotImplement', False, 0, constraint.Constraint())])
class TestVariable(unittest.TestCase):
30

31 32 33 34 35 36 37 38 39 40 41 42 43
    def setUp(self):
        self._var = variable.Variable(self.is_discrete, self.event_rank,
                                      self.constraint)

    @param.param_func([(1, )])
    def test_costraint(self, value):
        with self.assertRaises(NotImplementedError):
            self._var.constraint(value)


@param.param_cls((param.TEST_CASE_NAME, 'base', 'rank'),
                 [('real_base', variable.real, 10)])
class TestIndependent(unittest.TestCase):
44

45 46 47
    def setUp(self):
        self._var = variable.Independent(self.base, self.rank)

48 49 50
    @param.param_func([
        (paddle.rand([2, 3, 4]), ValueError),
    ])
51 52 53 54 55 56 57 58
    def test_costraint(self, value, expect):
        with self.assertRaises(expect):
            self._var.constraint(value)


@param.param_cls((param.TEST_CASE_NAME, 'vars', 'axis'),
                 [('real_base', [variable.real], 10)])
class TestStack(unittest.TestCase):
59

60 61 62 63 64 65
    def setUp(self):
        self._var = variable.Stack(self.vars, self.axis)

    def test_is_discrete(self):
        self.assertEqual(self._var.is_discrete, False)

66 67 68
    @param.param_func([
        (paddle.rand([2, 3, 4]), ValueError),
    ])
69 70 71 72 73 74 75
    def test_costraint(self, value, expect):
        with self.assertRaises(expect):
            self._var.constraint(value)


if __name__ == '__main__':
    unittest.main()