Skip to content

shubham1637/pytorch_tutorial

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyTorch Tutorial

This repository contains material to get started with PyTorch v1.3. It was the base for this [pytorch tutorial] from PyData Berlin 2018.


Table of Contents

PART 0 - Foreword

  • Foreword - Why PyTorch and why not? Why this talk?

PART 1 - Basics

PART 2 - Computer Vision

PART 3 - Misc, Cool Applications, Tips, Advanced

PART -2 - WIP and TODO

  • TODO nn and nn.Module
  • TODO Deployment
  • TODO Deployment with TF Serving
  • TODO nn.init
  • TODO PyTorch C++ frontend

PART -1 - The End


Setup

Requirements

  • conda
  • Python 3.7 or higher

Install Dependencies

# If you have a GPU and CUDA 10
conda env create -f environment_gpu.yml
# If you don't have a GPU
conda env create -f environment_cpu.yml

# activate the conda environment
source activate pytorch_tutorial_123

Download data and models

Download data and models for the tutorial:

python download_data.py

Then you should be ready to go. Start jupyter lab:

jupyter lab

Misc

To get the jupyter lab table of contents extensions do the following:

jupyter labextension install @jupyterlab/toc

Prior Versions

About

PyTorch Tutorial (1.3)

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Jupyter Notebook 99.6%
  • Other 0.4%