The rnn package in R
To implement RNN in an R environment, we can use the rnn
package available through CRAN. This package is widely used to implement an RNN. A brief description of the rnn
package, extracted from the official documentation, is shown in the following table:
rnn: Recurrent Neural Network |
Description: |
Implementation of an RNN in R |
Details: |
Package: |
Authors: |
Bastiaan Quast Dimitri Fichou |
The main functions used from the rnn
package are shown in this table:
| Predicts the output of an RNN model:
|
| A function to launch the
|
| This trains the RNN. The model is used by the |
| This predicts the output of an RNN model:
|
Â
Â
As always, to be able to use a library, we must first install and then load it into our script.
Note
Remember, to...