470 lines
17 KiB
Python
470 lines
17 KiB
Python
# 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
|
|
|
|
import numpy as np
|
|
from op_test import get_device_place, is_custom_device
|
|
from test_imperative_base import new_program_scope
|
|
from utils import DyGraphProgramDescTracerTestHelper
|
|
|
|
import paddle
|
|
from paddle import base
|
|
from paddle.autograd.backward_utils import ValueDict
|
|
from paddle.base import core
|
|
from paddle.nn import Embedding
|
|
|
|
|
|
def create_parameter_mapping(startup_program, main_program):
|
|
startup_params = {}
|
|
main_params = {}
|
|
parameter_mapping = ValueDict()
|
|
for op in startup_program.global_block().ops:
|
|
if op.name() == "builtin.set_parameter":
|
|
name = op.attrs()["parameter_name"]
|
|
param = op.operand(0).source()
|
|
startup_params[name] = param
|
|
|
|
for op in main_program.global_block().ops:
|
|
if op.name() == "builtin.parameter":
|
|
name = op.attrs()["parameter_name"]
|
|
param = op.result(0)
|
|
main_params[name] = param
|
|
|
|
assert len(startup_params) == len(main_params)
|
|
for name, startup_param in startup_params.items():
|
|
assert name in main_params
|
|
main_param = main_params[name]
|
|
parameter_mapping[main_param] = startup_param
|
|
return parameter_mapping
|
|
|
|
|
|
class SimpleLSTMRNN(paddle.nn.Layer):
|
|
def __init__(
|
|
self, hidden_size, num_steps, num_layers=2, init_scale=0.1, dropout=None
|
|
):
|
|
super().__init__()
|
|
self._hidden_size = hidden_size
|
|
self._num_layers = num_layers
|
|
self._init_scale = init_scale
|
|
self._dropout = dropout
|
|
self._input = None
|
|
self._num_steps = num_steps
|
|
self.cell_array = []
|
|
self.hidden_array = []
|
|
self._create_parameter()
|
|
|
|
def _create_parameter(self):
|
|
self.weight_1_arr = []
|
|
self.weight_2_arr = []
|
|
self.bias_arr = []
|
|
self.mask_array = []
|
|
|
|
for i in range(self._num_layers):
|
|
weight_1 = self.create_parameter(
|
|
attr=base.ParamAttr(
|
|
initializer=paddle.nn.initializer.Uniform(
|
|
low=-self._init_scale, high=self._init_scale
|
|
)
|
|
),
|
|
shape=[self._hidden_size * 2, self._hidden_size * 4],
|
|
dtype="float32",
|
|
default_initializer=paddle.nn.initializer.Uniform(
|
|
low=-self._init_scale, high=self._init_scale
|
|
),
|
|
)
|
|
self.weight_1_arr.append(self.add_parameter(f'w_{i}', weight_1))
|
|
bias_1 = self.create_parameter(
|
|
attr=base.ParamAttr(
|
|
initializer=paddle.nn.initializer.Uniform(
|
|
low=-self._init_scale, high=self._init_scale
|
|
)
|
|
),
|
|
shape=[self._hidden_size * 4],
|
|
dtype="float32",
|
|
default_initializer=paddle.nn.initializer.Constant(0.0),
|
|
)
|
|
self.bias_arr.append(self.add_parameter(f'b_{i}', bias_1))
|
|
|
|
def forward(self, input_embedding, init_hidden=None, init_cell=None):
|
|
self.cell_array = []
|
|
self.hidden_array = []
|
|
|
|
for i in range(self._num_layers):
|
|
pre_hidden = paddle.slice(
|
|
init_hidden, axes=[0], starts=[i], ends=[i + 1]
|
|
)
|
|
pre_cell = paddle.slice(
|
|
init_cell, axes=[0], starts=[i], ends=[i + 1]
|
|
)
|
|
pre_hidden = paddle.reshape(
|
|
pre_hidden, shape=[-1, self._hidden_size]
|
|
)
|
|
pre_cell = paddle.reshape(pre_cell, shape=[-1, self._hidden_size])
|
|
self.hidden_array.append(pre_hidden)
|
|
self.cell_array.append(pre_cell)
|
|
|
|
res = []
|
|
for index in range(self._num_steps):
|
|
self._input = paddle.slice(
|
|
input_embedding, axes=[1], starts=[index], ends=[index + 1]
|
|
)
|
|
self._input = paddle.reshape(
|
|
self._input, shape=[-1, self._hidden_size]
|
|
)
|
|
for k in range(self._num_layers):
|
|
pre_hidden = self.hidden_array[k]
|
|
pre_cell = self.cell_array[k]
|
|
weight_1 = self.weight_1_arr[k]
|
|
bias = self.bias_arr[k]
|
|
|
|
nn = paddle.concat([self._input, pre_hidden], 1)
|
|
gate_input = paddle.matmul(x=nn, y=weight_1)
|
|
|
|
gate_input = paddle.add(gate_input, bias)
|
|
i, j, f, o = paddle.split(
|
|
gate_input, num_or_sections=4, axis=-1
|
|
)
|
|
c = pre_cell * paddle.nn.functional.sigmoid(
|
|
f
|
|
) + paddle.nn.functional.sigmoid(i) * paddle.tanh(j)
|
|
m = paddle.tanh(c) * paddle.nn.functional.sigmoid(o)
|
|
self.hidden_array[k] = m
|
|
self.cell_array[k] = c
|
|
self._input = m
|
|
|
|
if self._dropout is not None and self._dropout > 0.0:
|
|
self._input = paddle.nn.functional.dropout(
|
|
self._input,
|
|
p=self._dropout,
|
|
mode='upscale_in_train',
|
|
)
|
|
res.append(
|
|
paddle.reshape(self._input, shape=[1, -1, self._hidden_size])
|
|
)
|
|
real_res = paddle.concat(res, 0)
|
|
real_res = paddle.transpose(x=real_res, perm=[1, 0, 2])
|
|
last_hidden = paddle.concat(self.hidden_array, 1)
|
|
last_hidden = paddle.reshape(
|
|
last_hidden, shape=[-1, self._num_layers, self._hidden_size]
|
|
)
|
|
last_hidden = paddle.transpose(x=last_hidden, perm=[1, 0, 2])
|
|
last_cell = paddle.concat(self.cell_array, 1)
|
|
last_cell = paddle.reshape(
|
|
last_cell, shape=[-1, self._num_layers, self._hidden_size]
|
|
)
|
|
last_cell = paddle.transpose(x=last_cell, perm=[1, 0, 2])
|
|
return real_res, last_hidden, last_cell
|
|
|
|
|
|
class PtbModel(paddle.nn.Layer):
|
|
def __init__(
|
|
self,
|
|
hidden_size,
|
|
vocab_size,
|
|
num_layers=2,
|
|
num_steps=20,
|
|
init_scale=0.1,
|
|
is_sparse=False,
|
|
dropout=None,
|
|
):
|
|
super().__init__()
|
|
self.hidden_size = hidden_size
|
|
self.vocab_size = vocab_size
|
|
self.init_scale = init_scale
|
|
self.num_layers = num_layers
|
|
self.num_steps = num_steps
|
|
self.dropout = dropout
|
|
self.simple_lstm_rnn = SimpleLSTMRNN(
|
|
hidden_size,
|
|
num_steps,
|
|
num_layers=num_layers,
|
|
init_scale=init_scale,
|
|
dropout=dropout,
|
|
)
|
|
self.embedding = Embedding(
|
|
vocab_size,
|
|
hidden_size,
|
|
sparse=is_sparse,
|
|
weight_attr=base.ParamAttr(
|
|
name='embedding_para',
|
|
initializer=paddle.nn.initializer.Uniform(
|
|
low=-init_scale, high=init_scale
|
|
),
|
|
),
|
|
)
|
|
self.softmax_weight = self.create_parameter(
|
|
attr=base.ParamAttr(),
|
|
shape=[self.hidden_size, self.vocab_size],
|
|
dtype="float32",
|
|
default_initializer=paddle.nn.initializer.Uniform(
|
|
low=-self.init_scale, high=self.init_scale
|
|
),
|
|
)
|
|
self.softmax_bias = self.create_parameter(
|
|
attr=base.ParamAttr(),
|
|
shape=[self.vocab_size],
|
|
dtype="float32",
|
|
default_initializer=paddle.nn.initializer.Uniform(
|
|
low=-self.init_scale, high=self.init_scale
|
|
),
|
|
)
|
|
|
|
def forward(self, input, label, init_hidden, init_cell):
|
|
init_h = paddle.reshape(
|
|
init_hidden, shape=[self.num_layers, -1, self.hidden_size]
|
|
)
|
|
|
|
init_c = paddle.reshape(
|
|
init_cell, shape=[self.num_layers, -1, self.hidden_size]
|
|
)
|
|
|
|
x_emb = self.embedding(input)
|
|
x_emb = paddle.reshape(
|
|
x_emb, shape=[-1, self.num_steps, self.hidden_size]
|
|
)
|
|
if self.dropout is not None and self.dropout > 0.0:
|
|
x_emb = paddle.nn.functional.dropout(
|
|
x_emb,
|
|
p=self.drop_out,
|
|
mode='upscale_in_train',
|
|
)
|
|
rnn_out, last_hidden, last_cell = self.simple_lstm_rnn(
|
|
x_emb, init_h, init_c
|
|
)
|
|
rnn_out = paddle.reshape(
|
|
rnn_out, shape=[-1, self.num_steps, self.hidden_size]
|
|
)
|
|
projection = paddle.matmul(rnn_out, self.softmax_weight)
|
|
projection = paddle.add(projection, self.softmax_bias)
|
|
projection = paddle.reshape(projection, shape=[-1, self.vocab_size])
|
|
loss = paddle.nn.functional.softmax_with_cross_entropy(
|
|
logits=projection, label=label, soft_label=False
|
|
)
|
|
loss = paddle.reshape(loss, shape=[-1, self.num_steps])
|
|
loss = paddle.mean(loss, axis=[0])
|
|
loss = paddle.sum(loss)
|
|
|
|
return loss, last_hidden, last_cell
|
|
|
|
|
|
class TestDygraphPtbRnn(unittest.TestCase):
|
|
def test_ptb_rnn(self):
|
|
for is_sparse in [True, False]:
|
|
self.ptb_rnn_cpu_float32(is_sparse)
|
|
|
|
def ptb_rnn_cpu_float32(self, is_sparse):
|
|
seed = 90
|
|
hidden_size = 10
|
|
vocab_size = 1000
|
|
num_layers = 1
|
|
num_steps = 3
|
|
init_scale = 0.1
|
|
batch_size = 4
|
|
batch_num = 200
|
|
traced_layer = None
|
|
|
|
with base.dygraph.guard():
|
|
paddle.seed(seed)
|
|
if paddle.framework.use_pir_api():
|
|
with paddle.pir_utils.OldIrGuard():
|
|
# Note: dygraph use self.main_program.global_block().create_parameter(), it's need manual seed to old Program
|
|
paddle.framework.random._manual_program_seed(seed)
|
|
paddle.framework.random._manual_program_seed(seed)
|
|
else:
|
|
paddle.framework.random._manual_program_seed(seed)
|
|
|
|
# TODO: marsyang1993 Change seed to
|
|
ptb_model = PtbModel(
|
|
hidden_size=hidden_size,
|
|
vocab_size=vocab_size,
|
|
num_layers=num_layers,
|
|
num_steps=num_steps,
|
|
init_scale=init_scale,
|
|
is_sparse=is_sparse,
|
|
)
|
|
|
|
sgd = paddle.optimizer.SGD(
|
|
learning_rate=1e-3, parameters=ptb_model.parameters()
|
|
)
|
|
dy_param_updated = {}
|
|
dy_param_init = {}
|
|
dy_loss = None
|
|
last_hidden = None
|
|
last_cell = None
|
|
|
|
helper = DyGraphProgramDescTracerTestHelper(self)
|
|
program = None
|
|
|
|
for i in range(batch_num):
|
|
x_data = np.arange(12).reshape(4, 3).astype('int64')
|
|
y_data = np.arange(1, 13).reshape(4, 3).astype('int64')
|
|
y_data = y_data.reshape((-1, 1))
|
|
init_hidden_data = np.zeros(
|
|
(num_layers, batch_size, hidden_size), dtype='float32'
|
|
)
|
|
init_cell_data = np.zeros(
|
|
(num_layers, batch_size, hidden_size), dtype='float32'
|
|
)
|
|
x = paddle.to_tensor(x_data)
|
|
y = paddle.to_tensor(y_data)
|
|
init_hidden = paddle.to_tensor(init_hidden_data)
|
|
init_cell = paddle.to_tensor(init_cell_data)
|
|
|
|
outs = ptb_model(x, y, init_hidden, init_cell)
|
|
|
|
dy_loss, last_hidden, last_cell = outs
|
|
|
|
if i == 0:
|
|
for param in ptb_model.parameters():
|
|
dy_param_init[param.name] = param.numpy()
|
|
dy_loss.backward()
|
|
sgd.minimize(dy_loss)
|
|
ptb_model.clear_gradients()
|
|
if i == batch_num - 1:
|
|
for param in ptb_model.parameters():
|
|
dy_param_updated[param.name] = param.numpy()
|
|
|
|
dy_loss_value = dy_loss.numpy()
|
|
dy_last_cell_value = last_cell.numpy()
|
|
dy_last_hidden_value = last_hidden.numpy()
|
|
|
|
paddle.enable_static()
|
|
with new_program_scope():
|
|
paddle.seed(seed)
|
|
if paddle.framework.use_pir_api():
|
|
with paddle.pir_utils.OldIrGuard():
|
|
# Note: dygraph use self.main_program.global_block().create_parameter(), it's need manual seed to old Program
|
|
paddle.framework.random._manual_program_seed(seed)
|
|
paddle.framework.random._manual_program_seed(seed)
|
|
else:
|
|
paddle.framework.random._manual_program_seed(seed)
|
|
|
|
ptb_model = PtbModel(
|
|
hidden_size=hidden_size,
|
|
vocab_size=vocab_size,
|
|
num_layers=num_layers,
|
|
num_steps=num_steps,
|
|
init_scale=init_scale,
|
|
is_sparse=is_sparse,
|
|
)
|
|
|
|
exe = base.Executor(
|
|
base.CPUPlace()
|
|
if not (core.is_compiled_with_cuda() or is_custom_device())
|
|
else get_device_place()
|
|
)
|
|
sgd = paddle.optimizer.SGD(learning_rate=1e-3)
|
|
x = paddle.static.data(
|
|
name="x", shape=[-1, num_steps], dtype='int64'
|
|
)
|
|
y = paddle.static.data(name="y", shape=[-1, 1], dtype='float32')
|
|
init_hidden = paddle.static.data(
|
|
name="init_hidden", shape=[-1, 1], dtype='float32'
|
|
)
|
|
init_cell = paddle.static.data(
|
|
name="init_cell", shape=[-1, 1], dtype='float32'
|
|
)
|
|
if not paddle.framework.use_pir_api():
|
|
x.desc.set_need_check_feed(False)
|
|
y.desc.set_need_check_feed(False)
|
|
init_hidden.desc.set_need_check_feed(False)
|
|
init_cell.desc.set_need_check_feed(False)
|
|
|
|
static_loss, static_last_hidden, static_last_cell = ptb_model(
|
|
x, y, init_hidden, init_cell
|
|
)
|
|
sgd.minimize(static_loss)
|
|
static_param_updated = {}
|
|
static_param_init = {}
|
|
static_param_name_list = []
|
|
static_params = []
|
|
for param in ptb_model.parameters():
|
|
static_param_name_list.append(param.name)
|
|
static_params.append(param)
|
|
|
|
if paddle.framework.use_pir_api():
|
|
parameter_mapping = create_parameter_mapping(
|
|
paddle.static.default_startup_program(),
|
|
paddle.static.default_main_program(),
|
|
)
|
|
startup_params = [
|
|
parameter_mapping[param] for param in static_params
|
|
]
|
|
else:
|
|
startup_params = static_params
|
|
|
|
out = exe.run(
|
|
paddle.static.default_startup_program(),
|
|
fetch_list=startup_params,
|
|
)
|
|
|
|
for i in range(len(static_params)):
|
|
param_name = static_param_name_list[i]
|
|
static_param_init[param_name] = out[i]
|
|
|
|
static_loss_value = None
|
|
static_last_cell_value = None
|
|
static_last_hidden_value = None
|
|
for i in range(batch_num):
|
|
x_data = np.arange(12).reshape(4, 3).astype('int64')
|
|
y_data = np.arange(1, 13).reshape(4, 3).astype('int64')
|
|
x_data = x_data.reshape((-1, num_steps, 1))
|
|
y_data = y_data.reshape((-1, 1))
|
|
init_hidden_data = np.zeros(
|
|
(num_layers, batch_size, hidden_size), dtype='float32'
|
|
)
|
|
init_cell_data = np.zeros(
|
|
(num_layers, batch_size, hidden_size), dtype='float32'
|
|
)
|
|
fetch_list = [static_loss, static_last_hidden, static_last_cell]
|
|
fetch_list.extend(static_params)
|
|
out = exe.run(
|
|
base.default_main_program(),
|
|
feed={
|
|
"x": x_data,
|
|
"y": y_data,
|
|
"init_hidden": init_hidden_data,
|
|
"init_cell": init_cell_data,
|
|
},
|
|
fetch_list=fetch_list,
|
|
)
|
|
static_loss_value = out[0]
|
|
static_last_hidden_value = out[1]
|
|
static_last_cell_value = out[2]
|
|
|
|
if i == batch_num - 1:
|
|
for k in range(3, len(out)):
|
|
static_param_updated[static_param_name_list[k - 3]] = (
|
|
out[k]
|
|
)
|
|
|
|
np.testing.assert_array_equal(static_loss_value, dy_loss_value)
|
|
np.testing.assert_array_equal(
|
|
static_last_cell_value, dy_last_cell_value
|
|
)
|
|
np.testing.assert_array_equal(
|
|
static_last_hidden_value, dy_last_hidden_value
|
|
)
|
|
for key, value in static_param_init.items():
|
|
np.testing.assert_array_equal(value, dy_param_init[key])
|
|
for key, value in static_param_updated.items():
|
|
np.testing.assert_allclose(
|
|
value, dy_param_updated[key], atol=1e-10, rtol=1e-6
|
|
)
|
|
paddle.disable_static()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|