Skip to content

Commit

Permalink
Resolved #58
Browse files Browse the repository at this point in the history
  • Loading branch information
upskyy committed Jul 21, 2021
1 parent 6b97e05 commit 7879ece
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openspeech/models/contextnet/configurations.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ class ContextNetTransducerConfigs(OpenspeechDataclass):
num_channels: int = field(
default=256, metadata={"help": "The number of channels in the convolution filter"}
)
hidden_dim: int = field(
decoder_hidden_state_dim: int = field(
default=2048, metadata={"help": "The number of features in the decoder hidden state"}
)
encoder_dim: int = field(
Expand All @@ -204,7 +204,7 @@ class ContextNetTransducerConfigs(OpenspeechDataclass):
decoder_output_dim: int = field(
default=640, metadata={"help": "Dimension of decoder output vector"}
)
dropout: float = field(
decoder_dropout_p: float = field(
default=0.1, metadata={"help": "Dropout probability of decoder"}
)
rnn_type: str = field(
Expand Down

0 comments on commit 7879ece

Please sign in to comment.