An open API service indexing awesome lists of open source software.

https://github.com/alro10/pytorch1.xtutorials-gcolab

PyTorch 1.x version's Tutorials using Google Colab: Overview, Regression, ConvNets, RNNs, GANs tutorials, etc.
https://github.com/alro10/pytorch1.xtutorials-gcolab

colab convnets deep-learning gans google-colab google-colab-tutorial google-colaboratory linear-regression logistic-regression machine-learning pytorch pytorch-1 pytorch-examples pytorch-tutorial regression

Last synced: about 1 month ago
JSON representation

PyTorch 1.x version's Tutorials using Google Colab: Overview, Regression, ConvNets, RNNs, GANs tutorials, etc.

Awesome Lists containing this project

README

          

# PyTorch 1.x Tutorials (step by step) with Google Colaboratory
[![PRsWelcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)


alt text

Tutorials: Overview, Linear Regression, Logistic Regression, Shallow Neural Networks, ConvNets, RNNs and LSTM, GANs, VAEs, Tensorboard with Pytorch, etc.[Official PyTorch site](https://pytorch.org/).

*under developing!*

## Installation

* Python 3.5

**No CUDA**
```
pip3 install https://download.pytorch.org/whl/cpu/torch-1.0.1.post2-cp35-cp35m-linux_x86_64.whl
pip3 install torchvision
```

**CUDA 8.0**
```
pip3 install https://download.pytorch.org/whl/cu80/torch-1.0.1.post2-cp35-cp35m-linux_x86_64.whl
pip3 install torchvision
```

**CUDA 9.0**
```
pip3 install torch torchvision
```

**CUDA 10.0**
```
pip3 install https://download.pytorch.org/whl/cu100/torch-1.0.1.post2-cp35-cp35m-linux_x86_64.whl
pip3 install torchvision
```
**Google Colaboratory**

In Google colab you can only use Python 3.6 and Pytorch 1.1 is available. Also you can run coding for free! click on ![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg) and try yourself on colab, File -> Save in drive -> Run on your G Colab.

## TODO

- [x] [Overview](https://github.com/Alro10/PyTorch1.xTutorials/blob/master/lesson01-Overview/01_tensor_tutorial.ipynb)
- [x] [Linear Regression](https://github.com/Alro10/PyTorch1.xTutorials/blob/master/lesson02-Linear-Regression/02_linear_regression.ipynb)
+ Check [torch.nn](https://pytorch.org/docs/stable/nn.html) out for better understanding `nn.module`.
- [x] [Logistic Regression](https://github.com/Alro10/PyTorch1.xTutorials/blob/master/lesson03-Logistic-Regression/03_logistic_mnist.ipynb)
- [X] [MNIST (shallow neural network)](https://github.com/Alro10/PyTorch1.xTutorials/blob/master/lesson04-Neural-Network/04_NeuralNets_mnist.ipynb)
- [x] [ConvNets-MNIST](https://github.com/Alro10/PyTorch1.xTutorials/blob/master/lesson05-ConvNets/05_ConvNets_mnist.ipynb)
- [ ] FashionMNIST
- [ ] CIFAR10
- [ ] ResNet
- [ ] YOLO
- [ ] Deep Reinforcement Learning
- [ ] Meta Reinforcement Learning
- [ ] GANs
- [ ] VAEs
- [ ] Model Predictive Control (MPC)