Deep-Learning-and-Scientific-Computing-with-R-torch icon indicating copy to clipboard operation
Deep-Learning-and-Scientific-Computing-with-R-torch copied to clipboard

Deep Learning and Scientific Computing with R torch

Results 12 Deep-Learning-and-Scientific-Computing-with-R-torch issues
Sort by recently updated
recently updated
newest added

Small typos are fixed in the second last snippet on luz. MSE should be computed with `nnf_mse_loss()` rather than `nn_mse_loss()`.

The current formula is something like $h(t)=W_{ih}X(t)+b_{ih}+W_{hh}X(t-1)+b_{hh}$ but it should be something like $h(t)=W_{ih}X(t)+b_{ih}+W_{hh}h(t-1)+b_{hh}$ The difference is that it is the previous state, not the previous inputs that are fed...