Skip to content

Commit f03c57c

Browse files
committed
Update README
1 parent bd58d1d commit f03c57c

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
- [PyTorch 1.0 tutorials and examples](#pytorch-10-tutorials-and-examples)
66
- [Books and slides about PyTorch (some of these are old version)](#books-and-slides-about-pytorch-some-of-these-are-old-version)
77
- [[PyTorch-Zero-To-All-[PyTorch1.0]](https://github.com/bat67/pytorch-tutorials-examples-and-books/tree/master/PyTorch-Zero-To-All-%5BPyTorch1.0%5D)](#pytorch-zero-to-all-pytorch10httpsgithubcombat67pytorch-tutorials-examples-and-bookstreemasterpytorch-zero-to-all-5bpytorch105d)
8-
- [how to run?](#how-to-run)
8+
- [Udacity: Deep Learning with PyTorch](#udacity-deep-learning-with-pytorch)
9+
- [How to run?](#how-to-run)
910

1011

1112
## PyTorch 1.0 tutorials and examples
@@ -40,7 +41,19 @@
4041

4142
* Slides-newest from Google Drive
4243

43-
## how to run?
44+
## Udacity: Deep Learning with PyTorch
45+
46+
* Part 1: Introduction to PyTorch and using tensors
47+
* Part 2: Building fully-connected neural networks with PyTorch
48+
* Part 3: How to train a fully-connected network with backpropagation on MNIST
49+
* Part 4: Exercise - train a neural network on Fashion-MNIST
50+
* Part 5: Using a trained network for making predictions and validating networks
51+
* Part 6: How to save and load trained models
52+
* Part 7: Load image data with torchvision, also data augmentation
53+
* Part 8: Use transfer learning to train a state-of-the-art image classifier for dogs and cats
54+
55+
56+
## How to run?
4457

4558
Some code in this repo is separated in blocks using `#%%`.
4659
A block is as same as a cell in `Jupyter Notebook`. So editors/IDEs supporting this functionality is recommanded.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Udacity: Deep Learning with PyTorch
2+
3+
This repo contains notebooks and related code for Udacity's Deep Learning with PyTorch lesson. This lesson appears in our [AI Programming with Python Nanodegree program](https://www.udacity.com/course/ai-programming-python-nanodegree--nd089).
4+
5+
* **Part 1:** Introduction to PyTorch and using tensors
6+
* **Part 2:** Building fully-connected neural networks with PyTorch
7+
* **Part 3:** How to train a fully-connected network with backpropagation on MNIST
8+
* **Part 4:** Exercise - train a neural network on Fashion-MNIST
9+
* **Part 5:** Using a trained network for making predictions and validating networks
10+
* **Part 6:** How to save and load trained models
11+
* **Part 7:** Load image data with torchvision, also data augmentation
12+
* **Part 8:** Use transfer learning to train a state-of-the-art image classifier for dogs and cats

0 commit comments

Comments
 (0)