You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>This is a <ahref="https://pytorch.org">PyTorch</a> implementation/tutorial of
76
+
<ahref="https://arxiv.org/abs/1710.09829">Dynamic Routing Between Capsules</a>.</p>
77
+
<p>Capsule network is a neural network architecture that embeds features
78
+
as capsules and routes them with a voting mechanism to next layer of capsules.</p>
79
+
<p>Unlike in other implementations of models, we’ve included a sample, because
80
+
it is difficult to understand some concepts with just the modules.
81
+
<ahref="mnist.html">This is the annotated code for a model that uses capsules to classify MNIST dataset</a></p>
82
+
<p>This file holds the implementations of the core modules of Capsule Networks.</p>
83
+
<p>I used <ahref="https://github.com/jindongwang/Pytorch-CapsuleNet">jindongwang/Pytorch-CapsuleNet</a> to clarify some
84
+
confusions I had with the paper.</p>
85
+
<p>Here’s a notebook for training a Capsule Network on MNIST dataset.</p>
86
+
<p><ahref="https://colab.research.google.com/github/lab-ml/nn/blob/master/labml_nn/capsule_networks/mnist.ipynb"><imgalt="Open In Colab" src="https://colab.research.google.com/assets/colab-badge.svg" /></a>
This is a [PyTorch](https://pytorch.org) implementation/tutorial of
4
+
[Dynamic Routing Between Capsules](https://arxiv.org/abs/1710.09829).
5
+
6
+
Capsule network is a neural network architecture that embeds features
7
+
as capsules and routes them with a voting mechanism to next layer of capsules.
8
+
9
+
Unlike in other implementations of models, we've included a sample, because
10
+
it is difficult to understand some concepts with just the modules.
11
+
[This is the annotated code for a model that uses capsules to classify MNIST dataset](mnist.html)
12
+
13
+
This file holds the implementations of the core modules of Capsule Networks.
14
+
15
+
I used [jindongwang/Pytorch-CapsuleNet](https://github.com/jindongwang/Pytorch-CapsuleNet) to clarify some
16
+
confusions I had with the paper.
17
+
18
+
Here's a notebook for training a Capsule Network on MNIST dataset.
19
+
20
+
[](https://colab.research.google.com/github/lab-ml/nn/blob/master/labml_nn/capsule_networks/mnist.ipynb)
0 commit comments