We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b11efc1 commit a81b846Copy full SHA for a81b846
i6_models/parts/lstm.py
@@ -61,7 +61,7 @@ def __init__(self, model_cfg: Union[LstmBlockV1Config, Dict[str, Any]]):
61
self.cfg = LstmBlockV1Config.from_dict(model_cfg) if isinstance(model_cfg, dict) else model_cfg
62
63
self.dropout = self.cfg.dropout
64
- self.enforce_sorted = self.cgf.enforce_sorted
+ self.enforce_sorted = self.cfg.enforce_sorted
65
self.lstm_stack = nn.LSTM(
66
input_size=self.cfg.input_dim,
67
hidden_size=self.cfg.hidden_dim,
0 commit comments