For example, with a PyTorch LSTM, one can do ``` LSTM(input_size, hidden_size, ...) ``` Is there a way to seperate the input_size from the hidden_size in this model? Or is the output size always the same as the input?
For example, with a PyTorch LSTM, one can do
Is there a way to seperate the input_size from the hidden_size in this model? Or is the output size always the same as the input?