Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor typos in librispeech transducer recipe. #328

Closed
whsqkaak opened this issue Apr 22, 2022 · 2 comments
Closed

Minor typos in librispeech transducer recipe. #328

whsqkaak opened this issue Apr 22, 2022 · 2 comments

Comments

@whsqkaak
Copy link
Contributor

Hello

I found some minor typos in Librispeech transducer recipe.

embeding_out = self.embedding(y)
embeding_out = self.embedding_dropout(embeding_out)
rnn_out, (h, c) = self.rnn(embeding_out, states)

embeding_out = self.embedding(y)
embeding_out = self.embedding_dropout(embeding_out)
rnn_out, (h, c) = self.rnn(embeding_out, states)

embeding_out = self.embedding(y)
embeding_out = self.embedding_dropout(embeding_out)
rnn_out, (h, c) = self.rnn(embeding_out, states)

I think embeding_out must be changed to embedding_out.

@csukuangfj
Copy link
Collaborator

Yes, you are right. Please make a PR if you have time.

@csukuangfj
Copy link
Collaborator

Closing via #329

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants