pytorch-land

pytorch-land for happy deep learning


Keywords
cyclegan, deep-learning, deep-neural-networks, gan, generative-adversarial-network, generative-model, python3, pytorch, wgan, wgan-gp
License
MIT
Install
pip install pytorch-land==0.1.6

Documentation

PyTorch Land

This is a repository of select implementations of deep learning models using pytorch.

There is also my own mini-framework for model training (which I call simply NetworkTrainer), that ended up with something very similar to ignite, created in order to reduce common boilerplating. More flexible and intuitive than ignite, in my opinion :).

More models to be added, and improvements on NetworkTrainer is under way.

Installation

pip3 install pytorch-land

See pypi page for package details.

Implemented Models

CNN architectures

GANs

Autoencoders

  • Stacked Denoising Autoencoders [paper] [code]
  • Stacked Convolutional Denoising Autoencoders (2017) [paper] [code]

Requirements

Required packages are specified in requirements.txt file. The packages can be installed using the following command:

pip3 install -r requirements.txt

Notably, the codes are compatible with pytorch 0.4 - working on with pytorch 1.1 compatibility.

NetworkTrainer

Datasets