2020-12-09 17:08:17 +08:00
|
|
|
# Copyright (c) 2020 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.
|
|
|
|
|
2020-10-10 15:51:54 +08:00
|
|
|
import paddle
|
|
|
|
from paddle import nn
|
|
|
|
|
2020-12-09 17:08:17 +08:00
|
|
|
|
2020-10-22 13:04:45 +08:00
|
|
|
class Conv1dCell(nn.Conv1D):
|
2020-10-10 15:51:54 +08:00
|
|
|
"""
|
|
|
|
A subclass of Conv1d layer, which can be used like an RNN cell. It can take
|
|
|
|
step input and return step output. It is done by keeping an internal buffer,
|
|
|
|
when adding a step input, we shift the buffer and return a step output. For
|
|
|
|
single step case, convolution devolves to a linear transformation.
|
|
|
|
|
|
|
|
That it can be used as a cell depends on several restrictions:
|
|
|
|
1. stride must be 1;
|
|
|
|
2. padding must be an asymmetric padding (recpetive_field - 1, 0).
|
|
|
|
|
|
|
|
As a result, these arguments are removed form the initializer.
|
|
|
|
"""
|
2020-12-09 17:08:17 +08:00
|
|
|
|
|
|
|
def __init__(self,
|
2020-10-10 15:51:54 +08:00
|
|
|
in_channels,
|
|
|
|
out_channels,
|
|
|
|
kernel_size,
|
|
|
|
dilation=1,
|
|
|
|
weight_attr=None,
|
|
|
|
bias_attr=None):
|
2020-12-09 17:08:17 +08:00
|
|
|
_dilation = dilation[0] if isinstance(dilation,
|
|
|
|
(tuple, list)) else dilation
|
|
|
|
_kernel_size = kernel_size[0] if isinstance(kernel_size, (
|
|
|
|
tuple, list)) else kernel_size
|
2020-10-10 15:51:54 +08:00
|
|
|
self._r = 1 + (_kernel_size - 1) * _dilation
|
|
|
|
super(Conv1dCell, self).__init__(
|
2020-12-09 17:08:17 +08:00
|
|
|
in_channels,
|
|
|
|
out_channels,
|
|
|
|
kernel_size,
|
|
|
|
padding=(self._r - 1, 0),
|
|
|
|
dilation=dilation,
|
|
|
|
weight_attr=weight_attr,
|
|
|
|
bias_attr=bias_attr,
|
2020-10-10 15:51:54 +08:00
|
|
|
data_format="NCL")
|
|
|
|
|
|
|
|
@property
|
|
|
|
def receptive_field(self):
|
|
|
|
return self._r
|
2020-12-09 17:08:17 +08:00
|
|
|
|
2020-10-10 15:51:54 +08:00
|
|
|
def start_sequence(self):
|
|
|
|
if self.training:
|
|
|
|
raise Exception("only use start_sequence in evaluation")
|
|
|
|
self._buffer = None
|
2020-12-09 21:05:39 +08:00
|
|
|
|
|
|
|
# NOTE: call self's weight norm hook expliccitly since self.weight
|
|
|
|
# is visited directly in this method without calling self.__call__
|
|
|
|
# method. If we do not trigger the weight norm hook, the weight
|
|
|
|
# may be outdated. e.g. after loading from a saved checkpoint
|
|
|
|
# see also: https://github.com/pytorch/pytorch/issues/47588
|
|
|
|
for hook in self._forward_pre_hooks.values():
|
|
|
|
hook(self, None)
|
2020-12-09 17:08:17 +08:00
|
|
|
self._reshaped_weight = paddle.reshape(self.weight,
|
|
|
|
(self._out_channels, -1))
|
|
|
|
|
2020-10-10 15:51:54 +08:00
|
|
|
def initialize_buffer(self, x_t):
|
|
|
|
batch_size, _ = x_t.shape
|
|
|
|
self._buffer = paddle.zeros(
|
2020-12-09 17:08:17 +08:00
|
|
|
(batch_size, self._in_channels, self.receptive_field),
|
2020-10-10 15:51:54 +08:00
|
|
|
dtype=x_t.dtype)
|
2020-12-09 17:08:17 +08:00
|
|
|
|
2020-10-10 15:51:54 +08:00
|
|
|
def update_buffer(self, x_t):
|
|
|
|
self._buffer = paddle.concat(
|
|
|
|
[self._buffer[:, :, 1:], paddle.unsqueeze(x_t, -1)], -1)
|
|
|
|
|
|
|
|
def add_input(self, x_t):
|
|
|
|
"""
|
|
|
|
Arguments:
|
|
|
|
x_t (Tensor): shape (batch_size, in_channels), step input.
|
|
|
|
Rerurns:
|
|
|
|
y_t (Tensor): shape (batch_size, out_channels), step output.
|
|
|
|
"""
|
|
|
|
batch_size = x_t.shape[0]
|
|
|
|
if self.receptive_field > 1:
|
|
|
|
if self._buffer is None:
|
|
|
|
self.initialize_buffer(x_t)
|
2020-12-09 17:08:17 +08:00
|
|
|
|
2020-10-10 15:51:54 +08:00
|
|
|
# update buffer
|
|
|
|
self.update_buffer(x_t)
|
|
|
|
if self._dilation[0] > 1:
|
|
|
|
input = self._buffer[:, :, ::self._dilation[0]]
|
|
|
|
else:
|
|
|
|
input = self._buffer
|
|
|
|
input = paddle.reshape(input, (batch_size, -1))
|
|
|
|
else:
|
|
|
|
input = x_t
|
|
|
|
y_t = paddle.matmul(input, self._reshaped_weight, transpose_y=True)
|
|
|
|
y_t = y_t + self.bias
|
|
|
|
return y_t
|
2020-10-14 10:05:26 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Conv1dBatchNorm(nn.Layer):
|
2020-12-09 17:08:17 +08:00
|
|
|
def __init__(self,
|
|
|
|
in_channels,
|
|
|
|
out_channels,
|
|
|
|
kernel_size,
|
|
|
|
stride=1,
|
|
|
|
padding=0,
|
|
|
|
weight_attr=None,
|
|
|
|
bias_attr=None,
|
|
|
|
data_format="NCL",
|
|
|
|
momentum=0.9,
|
|
|
|
epsilon=1e-05):
|
2020-10-14 10:05:26 +08:00
|
|
|
super(Conv1dBatchNorm, self).__init__()
|
2020-12-09 17:08:17 +08:00
|
|
|
self.conv = nn.Conv1D(
|
|
|
|
in_channels,
|
|
|
|
out_channels,
|
|
|
|
kernel_size,
|
|
|
|
stride,
|
|
|
|
padding=padding,
|
|
|
|
weight_attr=weight_attr,
|
|
|
|
bias_attr=bias_attr,
|
|
|
|
data_format=data_format)
|
|
|
|
self.bn = nn.BatchNorm1D(
|
|
|
|
out_channels,
|
|
|
|
momentum=momentum,
|
|
|
|
epsilon=epsilon,
|
|
|
|
data_format=data_format)
|
2020-10-14 10:05:26 +08:00
|
|
|
|
|
|
|
def forward(self, x):
|
2020-11-03 11:18:46 +08:00
|
|
|
x = self.conv(x)
|
|
|
|
x = self.bn(x)
|
|
|
|
return x
|