test_imperative_gan.py 9.0 KB
Newer Older
X
Xin Pan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
#
# 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
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# 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
16

X
Xin Pan 已提交
17
import numpy as np
18
from test_imperative_base import new_program_scope
X
Xin Pan 已提交
19 20 21

import paddle
import paddle.fluid as fluid
M
minqiyang 已提交
22
import paddle.fluid.core as core
L
lujun 已提交
23
from paddle.fluid.dygraph.base import to_variable
24
from paddle.fluid.optimizer import SGDOptimizer
25
from paddle.nn import Linear
X
Xin Pan 已提交
26 27


28
class Discriminator(fluid.Layer):
29
    def __init__(self):
30
        super().__init__()
31
        self._fc1 = Linear(1, 32)
32
        self._fc2 = Linear(32, 1)
X
Xin Pan 已提交
33 34 35

    def forward(self, inputs):
        x = self._fc1(inputs)
36
        x = paddle.nn.functional.elu(x)
37 38
        x = self._fc2(x)
        return x
X
Xin Pan 已提交
39 40


41
class Generator(fluid.Layer):
42
    def __init__(self):
43
        super().__init__()
44 45
        self._fc1 = Linear(2, 64)
        self._fc2 = Linear(64, 64)
46
        self._fc3 = Linear(64, 1)
X
Xin Pan 已提交
47 48 49

    def forward(self, inputs):
        x = self._fc1(inputs)
50
        x = paddle.nn.functional.elu(x)
X
Xin Pan 已提交
51
        x = self._fc2(x)
52
        x = paddle.nn.functional.elu(x)
53 54
        x = self._fc3(x)
        return x
X
Xin Pan 已提交
55 56


L
lujun 已提交
57
class TestDygraphGAN(unittest.TestCase):
58
    def test_gan_float32(self):
X
Xin Pan 已提交
59
        seed = 90
C
cnn 已提交
60
        paddle.seed(1)
L
Leo Chen 已提交
61
        paddle.framework.random._manual_program_seed(1)
X
Xin Pan 已提交
62 63
        startup = fluid.Program()
        discriminate_p = fluid.Program()
X
Xin Pan 已提交
64 65
        generate_p = fluid.Program()

X
Xin Pan 已提交
66
        scope = fluid.core.Scope()
67 68 69
        with new_program_scope(
            main=discriminate_p, startup=startup, scope=scope
        ):
70 71
            discriminator = Discriminator()
            generator = Generator()
X
Xin Pan 已提交
72

G
GGBond8488 已提交
73 74
            img = paddle.static.data(name="img", shape=[2, 1])
            noise = paddle.static.data(name="noise", shape=[2, 2])
X
Xin Pan 已提交
75 76

            d_real = discriminator(img)
77
            d_loss_real = paddle.mean(
78 79
                paddle.nn.functional.binary_cross_entropy_with_logits(
                    logit=d_real,
80 81 82 83 84
                    label=fluid.layers.fill_constant(
                        shape=[2, 1], dtype='float32', value=1.0
                    ),
                )
            )
X
Xin Pan 已提交
85 86

            d_fake = discriminator(generator(noise))
87
            d_loss_fake = paddle.mean(
88 89
                paddle.nn.functional.binary_cross_entropy_with_logits(
                    logit=d_fake,
90 91 92 93 94
                    label=fluid.layers.fill_constant(
                        shape=[2, 1], dtype='float32', value=0.0
                    ),
                )
            )
X
Xin Pan 已提交
95 96 97 98 99 100 101

            d_loss = d_loss_real + d_loss_fake

            sgd = SGDOptimizer(learning_rate=1e-3)
            sgd.minimize(d_loss)

        with new_program_scope(main=generate_p, startup=startup, scope=scope):
102 103
            discriminator = Discriminator()
            generator = Generator()
X
Xin Pan 已提交
104

G
GGBond8488 已提交
105
            noise = paddle.static.data(name="noise", shape=[2, 2])
X
Xin Pan 已提交
106 107

            d_fake = discriminator(generator(noise))
108
            g_loss = paddle.mean(
109 110
                paddle.nn.functional.binary_cross_entropy_with_logits(
                    logit=d_fake,
111 112 113 114 115
                    label=fluid.layers.fill_constant(
                        shape=[2, 1], dtype='float32', value=1.0
                    ),
                )
            )
X
Xin Pan 已提交
116 117 118 119

            sgd = SGDOptimizer(learning_rate=1e-3)
            sgd.minimize(g_loss)

120 121 122 123 124
        exe = fluid.Executor(
            fluid.CPUPlace()
            if not core.is_compiled_with_cuda()
            else fluid.CUDAPlace(0)
        )
X
Xin Pan 已提交
125
        static_params = dict()
X
Xin Pan 已提交
126 127 128 129
        with fluid.scope_guard(scope):
            img = np.ones([2, 1], np.float32)
            noise = np.ones([2, 2], np.float32)
            exe.run(startup)
130 131 132 133 134 135 136 137
            static_d_loss = exe.run(
                discriminate_p,
                feed={'img': img, 'noise': noise},
                fetch_list=[d_loss],
            )[0]
            static_g_loss = exe.run(
                generate_p, feed={'noise': noise}, fetch_list=[g_loss]
            )[0]
X
Xin Pan 已提交
138 139

            # generate_p contains all parameters needed.
X
Xin Pan 已提交
140
            for param in generate_p.global_block().all_parameters():
X
Xin Pan 已提交
141
                static_params[param.name] = np.array(
142 143
                    scope.find_var(param.name).get_tensor()
                )
X
Xin Pan 已提交
144 145

        dy_params = dict()
L
lujun 已提交
146
        with fluid.dygraph.guard():
C
cnn 已提交
147
            paddle.seed(1)
L
Leo Chen 已提交
148
            paddle.framework.random._manual_program_seed(1)
X
Xin Pan 已提交
149

150 151
            discriminator = Discriminator()
            generator = Generator()
152 153 154 155 156 157
            sgd = SGDOptimizer(
                learning_rate=1e-3,
                parameter_list=(
                    discriminator.parameters() + generator.parameters()
                ),
            )
X
Xin Pan 已提交
158 159

            d_real = discriminator(to_variable(np.ones([2, 1], np.float32)))
160
            d_loss_real = paddle.mean(
161 162
                paddle.nn.functional.binary_cross_entropy_with_logits(
                    logit=d_real, label=to_variable(np.ones([2, 1], np.float32))
163 164
                )
            )
X
Xin Pan 已提交
165 166

            d_fake = discriminator(
167 168
                generator(to_variable(np.ones([2, 2], np.float32)))
            )
169
            d_loss_fake = paddle.mean(
170 171 172
                paddle.nn.functional.binary_cross_entropy_with_logits(
                    logit=d_fake,
                    label=to_variable(np.zeros([2, 1], np.float32)),
173 174
                )
            )
X
Xin Pan 已提交
175 176

            d_loss = d_loss_real + d_loss_fake
L
lujun 已提交
177
            d_loss.backward()
X
Xin Pan 已提交
178
            sgd.minimize(d_loss)
X
Xin Pan 已提交
179 180
            discriminator.clear_gradients()
            generator.clear_gradients()
X
Xin Pan 已提交
181

X
Xin Pan 已提交
182
            d_fake = discriminator(
183 184
                generator(to_variable(np.ones([2, 2], np.float32)))
            )
185
            g_loss = paddle.mean(
186 187
                paddle.nn.functional.binary_cross_entropy_with_logits(
                    logit=d_fake, label=to_variable(np.ones([2, 1], np.float32))
188 189
                )
            )
L
lujun 已提交
190
            g_loss.backward()
X
Xin Pan 已提交
191 192
            sgd.minimize(g_loss)
            for p in discriminator.parameters():
193
                dy_params[p.name] = p.numpy()
X
Xin Pan 已提交
194
            for p in generator.parameters():
195
                dy_params[p.name] = p.numpy()
X
Xin Pan 已提交
196

197 198
            dy_g_loss = g_loss.numpy()
            dy_d_loss = d_loss.numpy()
X
Xin Pan 已提交
199

200 201
        dy_params2 = dict()
        with fluid.dygraph.guard():
202
            fluid.set_flags({'FLAGS_sort_sum_gradient': True})
C
cnn 已提交
203
            paddle.seed(1)
L
Leo Chen 已提交
204
            paddle.framework.random._manual_program_seed(1)
205 206
            discriminator2 = Discriminator()
            generator2 = Generator()
207 208 209 210 211 212
            sgd2 = SGDOptimizer(
                learning_rate=1e-3,
                parameter_list=(
                    discriminator2.parameters() + generator2.parameters()
                ),
            )
213 214

            d_real2 = discriminator2(to_variable(np.ones([2, 1], np.float32)))
215
            d_loss_real2 = paddle.mean(
216 217 218
                paddle.nn.functional.binary_cross_entropy_with_logits(
                    logit=d_real2,
                    label=to_variable(np.ones([2, 1], np.float32)),
219 220
                )
            )
221 222

            d_fake2 = discriminator2(
223 224
                generator2(to_variable(np.ones([2, 2], np.float32)))
            )
225
            d_loss_fake2 = paddle.mean(
226 227 228
                paddle.nn.functional.binary_cross_entropy_with_logits(
                    logit=d_fake2,
                    label=to_variable(np.zeros([2, 1], np.float32)),
229 230
                )
            )
231 232

            d_loss2 = d_loss_real2 + d_loss_fake2
233
            d_loss2.backward()
234 235 236 237 238
            sgd2.minimize(d_loss2)
            discriminator2.clear_gradients()
            generator2.clear_gradients()

            d_fake2 = discriminator2(
239 240
                generator2(to_variable(np.ones([2, 2], np.float32)))
            )
241
            g_loss2 = paddle.mean(
242 243 244
                paddle.nn.functional.binary_cross_entropy_with_logits(
                    logit=d_fake2,
                    label=to_variable(np.ones([2, 1], np.float32)),
245 246
                )
            )
247
            g_loss2.backward()
248 249 250 251 252 253 254 255 256
            sgd2.minimize(g_loss2)
            for p in discriminator2.parameters():
                dy_params2[p.name] = p.numpy()
            for p in generator.parameters():
                dy_params2[p.name] = p.numpy()

            dy_g_loss2 = g_loss2.numpy()
            dy_d_loss2 = d_loss2.numpy()

X
Xin Pan 已提交
257 258
        self.assertEqual(dy_g_loss, static_g_loss)
        self.assertEqual(dy_d_loss, static_d_loss)
259
        for k, v in dy_params.items():
260
            np.testing.assert_allclose(v, static_params[k], rtol=1e-05)
X
Xin Pan 已提交
261

262 263
        self.assertEqual(dy_g_loss2, static_g_loss)
        self.assertEqual(dy_d_loss2, static_d_loss)
264
        for k, v in dy_params2.items():
265
            np.testing.assert_allclose(v, static_params[k], rtol=1e-05)
266

X
Xin Pan 已提交
267 268 269

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