capsule net descriptions

This commit is contained in:
Varuna Jayasiri
2021-01-16 20:58:25 +05:30
parent 642c944e1b
commit fb2ecb6637
2 changed files with 11 additions and 7 deletions

View File

@ -2,17 +2,17 @@
---
title: Capsule Networks
summary: >
PyTorch implementation/tutorial of Capsule Networks.
PyTorch implementation and tutorial of Capsule Networks.
Capsule networks is neural network architecture that embeds features
as capsules and routes them with a voting mechanism to next layer of capsules.
---
# Capsule Networks
This is an implementation of [Dynamic Routing Between Capsules](https://arxiv.org/abs/1710.09829).
This is a PyTorch implementation and tutorial of [Dynamic Routing Between Capsules](https://arxiv.org/abs/1710.09829).
Capsule networks is neural network architecture that embeds features as capsules and routes them
with a voting mechanism to next layer of capsules.
Capsule networks is 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.

View File

@ -6,6 +6,8 @@ summary: Code for training Capsule Networks on MNIST dataset
# Classify MNIST digits with Capsule Networks
This is an annotated PyTorch code to classify MNIST digits with PyTorch.
This paper implements the experiment described in paper
[Dynamic Routing Between Capsules](https://arxiv.org/abs/1710.09829).
"""
@ -161,11 +163,13 @@ def main():
"""
Run the experiment
"""
conf = Configs()
experiment.create(name='capsule_network_mnist')
conf = Configs()
experiment.configs(conf, {'optimizer.optimizer': 'Adam',
'optimizer.learning_rate': 1e-3,
'device.cuda_device': 1})
'optimizer.learning_rate': 1e-3})
experiment.add_pytorch_models({'model': conf.model})
with experiment.start():
conf.run()