Search code examples
neural-networktorch

torch7 : how to connect the neurons of the same layer?


Is it possible to implement, using torch, an architecture that connects the neurons of the same layer?


Solution

  • What you describe is called a recurrent neural network. Note that it needs quite different type of structure, input data, and training algorithms to work well.

    There is the rnn library for Torch to work with recurrent neural networks.