Skip to content

Commit 67497d4

Browse files
authored
Fix the flow for the NLP tutorials (#2818)
The https://pytorch.org/tutorials/beginner/deep_learning_nlp_tutorial.html is not showing up the main tutorial which has been broken down into small tutorials. The README provides links to those tutorials. This PR makes the connection. All the broken down tutorials has original author's name mentioned for providing credit. Signed-off-by: Sahdev Zala <[email protected]>
1 parent 08a61b7 commit 67497d4

File tree

2 files changed

+22
-56
lines changed

2 files changed

+22
-56
lines changed

beginner_source/deep_learning_nlp_tutorial.rst

Lines changed: 0 additions & 56 deletions
This file was deleted.

beginner_source/nlp/README.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
Deep Learning for NLP with Pytorch
22
----------------------------------
33

4+
These tutorials will walk you through the key ideas of deep learning
5+
programming using Pytorch. Many of the concepts (such as the computation
6+
graph abstraction and autograd) are not unique to Pytorch and are
7+
relevant to any deep learning toolkit out there.
8+
9+
They are focused specifically on NLP for people who have never written
10+
code in any deep learning framework (e.g, TensorFlow,Theano, Keras, DyNet).
11+
The tutorials assumes working knowledge of core NLP problems: part-of-speech
12+
tagging, language modeling, etc. It also assumes familiarity with neural
13+
networks at the level of an intro AI class (such as one from the Russel and
14+
Norvig book). Usually, these courses cover the basic backpropagation algorithm
15+
on feed-forward neural networks, and make the point that they are chains of
16+
compositions of linearities and non-linearities. This tutorial aims to get
17+
you started writing deep learning code, given you have this prerequisite
18+
knowledge.
19+
20+
Note these tutorials are about *models*, not data. For all of the models,
21+
a few test examples are created with small dimensionality so you can see how
22+
the weights change as it trains. If you have some real data you want to
23+
try, you should be able to rip out any of the models from this notebook
24+
and use them on it.
25+
426
1. pytorch_tutorial.py
527
Introduction to PyTorch
628
https://pytorch.org/tutorials/beginner/nlp/pytorch_tutorial.html

0 commit comments

Comments
 (0)