enable encoder lstm bias

pull/10/head
erogol 2020-05-04 21:03:03 +02:00
parent 9504b71f79
commit 6f5c8773d6
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ class Encoder(nn.Module):
int(output_input_dim / 2),
num_layers=1,
batch_first=True,
bias=False,
bias=True,
bidirectional=True)
self.rnn_state = None