About 270,000 results
Open links in new tab
  1. Recursive neural network - Wikipedia

    A recursive neural network is a kind of deep neural network created by applying the same set of weights recursively over a structured input, to produce a structured prediction over variable …

  2. Recursive Neural Network in Deep Learning - GeeksforGeeks

    Jul 23, 2025 · Recursive Neural Networks are a type of neural network architecture that is specially designed to process hierarchical structures and capture dependencies within …

  3. Recursive Neural Tensor Network | Pathmind

    They have a tree structure with a neural net at each node. You can use recursive neural tensor networks for boundary segmentation, to determine which word groups are positive and which …

  4. Recursive Neural Networks (RvNN) Deep Dive: Equations and Code

    Jan 17, 2025 · Introduced by Socher et al., 2013, the Recursive Neural Tensor Network (RNTN) is known for its ability to model complex interactions between child nodes, thanks to a tensor …

  5. Recursive neural networks are also called Tree Nets. Useful for learning tree-like structures. They are highly useful for parsing natural scenes and language.

  6. May 5, 2016 · In the DT-RNN and SDT-RNN models (Socher et al., 2014), the vector rep-resentation for each node in a dependency tree is a sum over affine-transformed child vectors, …

  7. Recursive (not Recurrent!) Neural Networks in TensorFlow

    Jun 30, 2016 · Learn how to implement recursive neural networks in TensorFlow, which can be used to learn tree-like structures, or directed acyclic graphs. By Alireza Nejati, University of …

  8. Understanding Recursive Neural Networks - DEV Community

    Jun 27, 2024 · Recursive Neural Networks are a type of neural network that applies the same set of weights recursively over a structured input to produce a structured output. This recursive …

  9. Mastering Recursive Neural Networks with PyTorch

    Nov 14, 2025 · Recursive Neural Networks (RNNs) are a class of artificial neural networks designed to handle sequential data by maintaining a hidden state that can capture information …

  10. PyTorch - Recursive Neural Networks - Online Tutorials Library

    Natural language processing includes a special case of recursive neural networks. This recursive neural tensor network includes various composition functional nodes in the tree. The example …