Solved – Recursive neural network implementation in Theano

natural languagetheano

Is there any available recursive neural network implementation in Theano? Theano's deeplearning.net tutorial does not present any recursive neural networks. Most Theano code I've found is CNN, LSTM, GRU, vanilla recurrent neural networks or MLP. I am most interested in implementations for natural language processing.

Example of a recursive neural network:

enter image description here

Best Answer

Here you go https://github.com/ofirnachum/tree_rnn.

This Theano implementation should be roughly what is described in the Kai Sheng Tai paper.