You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it correct that there is no support for 'vanilla' RNN layers, e.g. that of torch.nn.RNN? Is the reason for this something like 'GRU or LSTM is better anyway, just use that'?
The text was updated successfully, but these errors were encountered:
That's correct, at the moment RTNeural does not have support for that layer type. The reasoning is more just that I haven't yet had a need for it, and haven't received any requests to implement it (up to now). We probably should implement that layer, especially since it's simpler than the GRU or LSTM layers.
I'll probably end up naming the layer something like ElmanRNN, since I think that's maybe a more "specific" name than just RNN. Would you happen to know if TensorFlow has an equivalent layer?
I've added this to my to-do list, but it might be a minute before I get around to implementing it.
Is it correct that there is no support for 'vanilla' RNN layers, e.g. that of torch.nn.RNN? Is the reason for this something like 'GRU or LSTM is better anyway, just use that'?
The text was updated successfully, but these errors were encountered: