fix attn export

This commit is contained in:
WenmuZhou 2021-03-11 15:30:33 +08:00
parent 1a087990d0
commit acffd750f7
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class AttentionHead(nn.Layer):
return input_ont_hot
def forward(self, inputs, targets=None, batch_max_length=25):
batch_size = inputs.shape[0]
batch_size = paddle.shape(inputs)[0]
num_steps = batch_max_length
hidden = paddle.zeros((batch_size, self.hidden_size))