https://github.com/hpcgarage/accelerated_dl_pytorch
  
  
    Accelerated Deep Learning with PyTorch at Jupyter Day Atlanta II 
    https://github.com/hpcgarage/accelerated_dl_pytorch
  
        Last synced: 6 days ago 
        JSON representation
    
Accelerated Deep Learning with PyTorch at Jupyter Day Atlanta II
- Host: GitHub
 - URL: https://github.com/hpcgarage/accelerated_dl_pytorch
 - Owner: hpcgarage
 - Created: 2018-03-31T02:05:07.000Z (over 7 years ago)
 - Default Branch: master
 - Last Pushed: 2018-04-05T20:02:12.000Z (over 7 years ago)
 - Last Synced: 2025-05-07T07:40:08.225Z (6 months ago)
 - Language: Jupyter Notebook
 - Size: 1010 KB
 - Stars: 127
 - Watchers: 6
 - Forks: 29
 - Open Issues: 0
 - 
            Metadata Files:
            
- Readme: README.md
 
 
Awesome Lists containing this project
- Awesome-pytorch-list-CNVersion - accelerated_dl_pytorch
 - Awesome-pytorch-list - accelerated_dl_pytorch
 
README
          # accelerated_dl_pytorch
This is the repository for **Accelerated Deep Learning with Pytotch** tutorial and [**Jupyter Day Atlanta 2018**](https://github.com/atl-jugheads/jupyter-day-atlanta-ii) talk slides. It features full tutorial notebook, Jupyter Notebook Slides html file, and a demo with surface finish quality inspection.
## Knowledge Prerequisites
This tutorial assumes familiarity with Python and Numpy.
## Tutorial Prerequisites
Python3 is required to run this tutorial. You also will need some libraries from SciPy package (NumPy, Matplotlib, Pandas), Jupyter Notebook support, Seaborn for plotting, and Pytorch 0.3.0 or newer.
The simpliest way to maintain Python with all these libraries as well as many others is to install [Anaconda](https://www.anaconda.com/download). You can Find Pytorch installation instructions on the [Pytorch page](http://pytorch.org).
CUDA availability is not strictly required, but highly desirable. Life is short -- use a GPU!
## How to Use
Our tutorial git has two submodules - for surface dataset, and for pretrained model for surface finish quality inspection. To download the tutorial, use 
```
git clone --recurse-submodules git@github.com:hpcgarage/accelerated_dl_pytorch.git
```
If you didn't clone repository with its submodules, you can always clone submodules with this command:
```
git submodule update --init --recursive
```
To run the Jupyter Notebook Slides as at Jupyter Day Atlanta 2018 talk, you can use following command:
```
jupyter nbconvert tutorial_presentation.ipynb --to slides --post serve
```
## Table of Contents
1. Essential PyTorch Background
2. PyTorch for Data Analytics
3. LeNet Convolutional Neural Network (CNN) in PyTorch
4. Application to a Manufacturing Problem