test_parameter.py 1.2 KB
Newer Older
Y
Yu Yang 已提交
1
import unittest
Y
Yu Yang 已提交
2
from paddle.v2.fluid.framework import default_main_program
Q
Qiao Longfei 已提交
3
import paddle.v2.fluid.core as core
X
xuwei06 已提交
4 5 6 7
from paddle.v2.fluid.executor import Executor
import paddle.v2.fluid.io as io
from paddle.v2.fluid.initializer import ConstantInitializer
import numpy as np
Y
Yu Yang 已提交
8

Y
Yu Yang 已提交
9 10
main_program = default_main_program()

Y
Yu Yang 已提交
11 12 13

class TestParameter(unittest.TestCase):
    def test_param(self):
X
xuwei06 已提交
14 15
        shape = [784, 100]
        val = 1.0625
Y
Yu Yang 已提交
16
        b = main_program.global_block()
Y
Yu Yang 已提交
17 18
        param = b.create_parameter(
            name='fc.w',
X
xuwei06 已提交
19
            shape=shape,
Y
Yu Yang 已提交
20
            dtype='float32',
X
xuwei06 已提交
21
            initializer=ConstantInitializer(val))
Y
Yu Yang 已提交
22 23 24
        self.assertIsNotNone(param)
        self.assertEqual('fc.w', param.name)
        self.assertEqual((784, 100), param.shape)
F
fengjiayi 已提交
25
        self.assertEqual(core.DataType.FP32, param.dtype)
Y
Yu Yang 已提交
26
        self.assertEqual(0, param.block.idx)
X
xuwei06 已提交
27
        exe = Executor(core.CPUPlace())
Y
Yu Yang 已提交
28
        p = exe.run(main_program, fetch_list=[param])[0]
D
dzhwinter 已提交
29
        self.assertTrue(np.allclose(p, np.ones(shape) * val))
Y
Yu Yang 已提交
30
        p = io.get_parameter_value_by_name('fc.w', exe, main_program)
X
xuwei06 已提交
31
        self.assertTrue(np.allclose(np.array(p), np.ones(shape) * val))
Y
Yu Yang 已提交
32 33 34 35


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