forked from taeung/pytorch-example
A set of examples around pytorch in Vision, Text, Reinforcement Learning, etc.
33af28c5c8
This reverts commit 80fcb66ba7a1a425c92fcfd2d6de63af981f77ee. |
||
---|---|---|
.github/workflows | ||
cpp | ||
dcgan | ||
distributed | ||
fast_neural_style | ||
imagenet | ||
mnist | ||
mnist_hogwild | ||
regression | ||
reinforcement_learning | ||
snli | ||
super_resolution | ||
time_sequence_prediction | ||
vae | ||
word_language_model | ||
.gitignore | ||
LICENSE | ||
README.md | ||
run_python_examples.sh |
PyTorch Examples
A repository showcasing examples of using PyTorch
- Image classification (MNIST) using Convnets
- Word level Language Modeling using LSTM RNNs
- Training Imagenet Classifiers with Residual Networks
- Generative Adversarial Networks (DCGAN)
- Variational Auto-Encoders
- Superresolution using an efficient sub-pixel convolutional neural network
- Hogwild training of shared ConvNets across multiple processes on MNIST
- Training a CartPole to balance in OpenAI Gym with actor-critic
- Natural Language Inference (SNLI) with GloVe vectors, LSTMs, and torchtext
- Time sequence prediction - use an LSTM to learn Sine waves
- Implement the Neural Style Transfer algorithm on images
- Several examples illustrating the C++ Frontend
Additionally, a list of good examples hosted in their own repositories: