From 5442d8c7342e09024aa91547ab2cab511b05dc2e Mon Sep 17 00:00:00 2001 From: Eren Golge Date: Tue, 10 Apr 2018 09:35:49 -0700 Subject: [PATCH] Message fix --- models/tacotron.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/tacotron.py b/models/tacotron.py index f6a78e12..d5d69b1d 100644 --- a/models/tacotron.py +++ b/models/tacotron.py @@ -15,7 +15,7 @@ class Tacotron(nn.Module): self.linear_dim = linear_dim self.embedding = nn.Embedding(len(symbols), embedding_dim, padding_idx=padding_idx) - print(" | > Embedding dim : {}".format(len(symbols))) + print(" | > Number of characted : {}".format(len(symbols))) self.embedding.weight.data.normal_(0, 0.3) self.encoder = Encoder(embedding_dim) self.decoder = Decoder(256, mel_dim, r)