Neural network set in R

Which packet in R contains a recursive neural network and the functions of an auto-associative neural network?

I use the nnet and neuralnet , but I need to use a recursive neural network or an auto-associative neural network.

+2
source share
2 answers

Googling for R neural networks provided many useful links. The nnet package seems to be a very used way of using neural networks in R. It is included as standard in R. Googling for CRAN neural networks gave more interesting links: neuralnet and RSNNS . Perhaps these links contain something for your link.

+5
source

You can see the RWeka package , which gives you access to the algorithms implemented by Weka . I do not know what a recursive neural network is, but if you mean a recurrent neural network, there is a Weka package .

+3
source

Source: https://habr.com/ru/post/1442918/


All Articles