mirror of
https://github.com/labmlai/annotated_deep_learning_paper_implementations.git
synced 2025-10-30 18:27:03 +08:00
capsnet readme
This commit is contained in:
@ -16,7 +16,7 @@ Capsule network is a neural network architecture that embeds features
|
||||
as capsules and routes them with a voting mechanism to next layer of capsules.
|
||||
|
||||
Unlike in other implementations of models, we've included a sample, because
|
||||
it is difficult to understand some of the concepts with just the modules.
|
||||
it is difficult to understand some concepts with just the modules.
|
||||
[This is the annotated code for a model that uses capsules to classify MNIST dataset](mnist.html)
|
||||
|
||||
This file holds the implementations of the core modules of Capsule Networks.
|
||||
|
||||
21
labml_nn/capsule_networks/readme.md
Normal file
21
labml_nn/capsule_networks/readme.md
Normal file
@ -0,0 +1,21 @@
|
||||
# [Capsule Networks](https://nn.labml.ai/capsule_networks/index.html)
|
||||
|
||||
This is a [PyTorch](https://pytorch.org) implementation/tutorial of
|
||||
[Dynamic Routing Between Capsules](https://arxiv.org/abs/1710.09829).
|
||||
|
||||
Capsule network is a neural network architecture that embeds features
|
||||
as capsules and routes them with a voting mechanism to next layer of capsules.
|
||||
|
||||
Unlike in other implementations of models, we've included a sample, because
|
||||
it is difficult to understand some concepts with just the modules.
|
||||
[This is the annotated code for a model that uses capsules to classify MNIST dataset](mnist.html)
|
||||
|
||||
This file holds the implementations of the core modules of Capsule Networks.
|
||||
|
||||
I used [jindongwang/Pytorch-CapsuleNet](https://github.com/jindongwang/Pytorch-CapsuleNet) to clarify some
|
||||
confusions I had with the paper.
|
||||
|
||||
Here's a notebook for training a Capsule Network on MNIST dataset.
|
||||
|
||||
[](https://colab.research.google.com/github/lab-ml/nn/blob/master/labml_nn/capsule_networks/mnist.ipynb)
|
||||
[](https://app.labml.ai/run/e7c08e08586711ebb3e30242ac1c0002)
|
||||
Reference in New Issue
Block a user