Change learning speed of simple_lm_proj

This commit is contained in:
Daniel Povey 2022-04-02 20:15:11 +08:00
parent 34500afc43
commit 807fcada68

View File

@ -65,8 +65,7 @@ class Transducer(nn.Module):
self.simple_am_proj = ScaledLinear(encoder_dim, vocab_size,
initial_speed=0.5)
self.simple_lm_proj = ScaledLinear(decoder_dim, vocab_size,
initial_speed=0.5)
self.simple_lm_proj = ScaledLinear(decoder_dim, vocab_size)
def forward(
self,