Skip to content

Commit 1b8dd52

Browse files
committed
remove leftover print statement
1 parent 6d200eb commit 1b8dd52

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

i6_models/decoder/attention.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ class AttentionLSTMDecoderV1(nn.Module):
9696
def __init__(self, cfg: AttentionLSTMDecoderV1Config):
9797
super().__init__()
9898

99-
print(cfg.vocab_size)
10099
self.target_embed = nn.Embedding(num_embeddings=cfg.vocab_size, embedding_dim=cfg.target_embed_dim)
101100
self.target_embed_dropout = nn.Dropout(cfg.target_embed_dropout)
102101

0 commit comments

Comments
 (0)