(self, input_size: int, hidden_size: int, bias: bool = True,)
| 181 | """ |
| 182 | |
| 183 | def __init__(self, input_size: int, hidden_size: int, bias: bool = True,) -> None: |
| 184 | super(LSTMCell, self).__init__(input_size, hidden_size, bias, num_chunks=4) |
| 185 | |
| 186 | def forward( |
| 187 | self, input: Tensor, hx: Optional[Tuple[Tensor, Tensor]] = None |