Files
Varuna Jayasiri 38f994a2c0 capsnet readme
2021-03-05 15:17:54 +05:30
..
2021-03-05 15:17:54 +05:30
2021-02-27 17:48:18 +05:30
2021-02-14 18:52:30 +05:30
2021-03-05 15:17:54 +05:30

Capsule Networks

This is a PyTorch implementation/tutorial of Dynamic Routing Between Capsules.

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

This file holds the implementations of the core modules of Capsule Networks.

I used jindongwang/Pytorch-CapsuleNet to clarify some confusions I had with the paper.

Here's a notebook for training a Capsule Network on MNIST dataset.

Open In Colab View Run