Difference between revisions of "Capsule Networks (CapNets)"
| Line 10: | Line 10: | ||
* [[Architectures]] | * [[Architectures]] | ||
* [[Graph Convolutional Network (GCN), Graph Neural Networks (Graph Nets), Geometric Deep Learning]] | * [[Graph Convolutional Network (GCN), Graph Neural Networks (Graph Nets), Geometric Deep Learning]] | ||
| − | * [http:// | + | * [http://github.com/sekwiatkowski/awesome-capsule-networks Sekwiatkowski/Awesome Capsule Networks | GitHub] - A curated list of awesome resources related to Capsule Networks |
* [http://medium.com/ai%C2%B3-theory-practice-business/understanding-hintons-capsule-networks-part-i-intuition-b4b559d1159b Understanding Hinton’s Capsule Networks | Max Pechyonkin] | * [http://medium.com/ai%C2%B3-theory-practice-business/understanding-hintons-capsule-networks-part-i-intuition-b4b559d1159b Understanding Hinton’s Capsule Networks | Max Pechyonkin] | ||
* [http://towardsdatascience.com/capsule-networks-the-new-deep-learning-network-bd917e6818e8 Capsule Networks: The New Deep Learning Network | Aryan Misra] | * [http://towardsdatascience.com/capsule-networks-the-new-deep-learning-network-bd917e6818e8 Capsule Networks: The New Deep Learning Network | Aryan Misra] | ||
Revision as of 18:24, 10 August 2019
Youtube search... ...Google search
- Architectures
- Graph Convolutional Network (GCN), Graph Neural Networks (Graph Nets), Geometric Deep Learning
- Sekwiatkowski/Awesome Capsule Networks | GitHub - A curated list of awesome resources related to Capsule Networks
- Understanding Hinton’s Capsule Networks | Max Pechyonkin
- Capsule Networks: The New Deep Learning Network | Aryan Misra
- MATRIX CAPSULES WITH EM ROUTING | Geoffrey Hinton, Sara Sabour, Nicholas Frosst - Google Brain
Capsule is a nested set of neural layers. So in a regular neural network you keep on adding more layers. In CapsNet you would add more layers inside a single layer. Or in other words nest a neural layer inside another. The state of the neurons inside a capsule capture the above properties of one entity inside an image. A capsule outputs a vector to represent the existence of the entity. The orientation of the vector represents the properties of the entity. The vector is sent to all possible parents in the neural network. For each possible parent a capsule can find a prediction vector. Prediction vector is calculated based on multiplying it’s own weight and a weight matrix. Whichever parent has the largest scalar prediction vector product, increases the capsule bond. Rest of the parents decrease their bond. This routing by agreement method is superior than the current mechanism like max-pooling (Pooling / Sub-sampling: Max, Mean). What is a CapsNet or Capsule Network? | Debarko De
A capsule is a group of neurons whose activity vector represents the instantiation parameters of a specific type of entity such as an object or an object part. We use the length of the activity vector to represent the probability that the entity exists and its orientation to represent the instantiation parameters. Active capsules at one level make predictions, via transformation matrices, for the instantiation parameters of higher-level capsules. When multiple predictions agree, a higher level capsule becomes active. We show that a discrimininatively trained, multi-layer capsule system achieves state-of-the-art performance on MNIST and is considerably better than a convolutional net at recognizing highly overlapping digits. To achieve these results we use an iterative routing-by-agreement mechanism: A lower-level capsule prefers to send its output to higher level capsules whose activity vectors have a big scalar product with the prediction coming from the lower-level capsule. Dynamic Routing Between Capsules | Sara Sabour, Nicholas Frosst, Geoffrey E Hinton - Google Brain