Skip to content

Commit

Permalink
Merge pull request #59 from openspeech-team/chun
Browse files Browse the repository at this point in the history
Resolved #58
  • Loading branch information
upskyy authored Jul 21, 2021
2 parents 6b97e05 + 7879ece commit 4929bb2
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 4929bb2

Please sign in to comment.