|
| 1 | +NLP from Scratch |
| 2 | +================ |
| 3 | + |
| 4 | +In these three-part series you will build and train |
| 5 | +a basic character-level Recurrent Neural Network (RNN) to classify words. |
| 6 | + |
| 7 | +You will learn: |
| 8 | + |
| 9 | +* How to construct Recurrent Neural Networks from scratch |
| 10 | +* Essential data handling techniques for NLP |
| 11 | +* How to train an RNN to identify the language origin of words. |
| 12 | + |
| 13 | +Before you begin, we recommend that you review the following: |
| 14 | + |
| 15 | +* `PyTorch Learn the Basics series <https://pytorch.org/tutorials/beginner/basics/intro.html>`__ |
| 16 | +* `How to install PyTorch <https://pytorch.org/get-started/locally/>`__ |
| 17 | + |
| 18 | +.. grid:: 3 |
| 19 | + |
| 20 | + .. grid-item-card:: :octicon:`file-code;1em` |
| 21 | + NLP From Scratch - Part 1: Classifying Names with a Character-Level RNN |
| 22 | + :link: https://pytorch.org/tutorials/intermediate/char_rnn_classification_tutorial.html |
| 23 | + :link-type: url |
| 24 | + |
| 25 | + Learn how to use an RNN to classify names into their language of origin. |
| 26 | + +++ |
| 27 | + :octicon:`code;1em` Code |
| 28 | + |
| 29 | + .. grid-item-card:: :octicon:`file-code;1em` |
| 30 | + NLP From Scratch - Part 2: Generating Names with a Character-Level RNN |
| 31 | + :link: https://pytorch.org/tutorials/intermediate/char_rnn_generation_tutorial.html |
| 32 | + :link-type: url |
| 33 | + |
| 34 | + Expand the RNN we created in Part 1 to generate names from languages. |
| 35 | + +++ |
| 36 | + :octicon:`code;1em` Code |
| 37 | + |
| 38 | + .. grid-item-card:: :octicon:`file-code;1em` |
| 39 | + NLP From Scratch - Part 3: Translation with a Sequence to Sequence Network and Attention |
| 40 | + :link: https://pytorch.org/tutorials/intermediate/seq2seq_translation_tutorial.html |
| 41 | + :link-type: url |
| 42 | + |
| 43 | + Create a sequence-to-sequence model that can translate your text from French |
| 44 | + to English. |
| 45 | + +++ |
| 46 | + :octicon:`code;1em` Code |
| 47 | + |
| 48 | + |
0 commit comments