From 5491c182ffaf415d0701fcd294baa97663c8e645 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BA=AA=E7=84=98=20=28Tao=20Ji=29?= Date: Tue, 11 Jan 2022 15:11:43 +0800 Subject: [PATCH] add pytorch-warmup Two tutorials for basic operations (learn Tensor, +-*/, Linear, ......) One tutorial for NLP classification task (learn rnn, loss function, optimizer, parameter update, ......) One tutorial for NLP language modeling task (learn text generation, Transformer, ......) --- pytorch-warmup/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pytorch-warmup/README.md b/pytorch-warmup/README.md index e69de29..2c72137 100644 --- a/pytorch-warmup/README.md +++ b/pytorch-warmup/README.md @@ -0,0 +1,4 @@ ++ **pytorch basic operations** [Deep Learning with PyTorch: A 60 Minute Blitz](https://pytorch.org/tutorials/beginner/deep_learning_60min_blitz.html) ++ **pytorch basic examples** [Learning PyTorch with Examples](https://pytorch.org/tutorials/beginner/pytorch_with_examples.html#) ++ **pytorch+NLP RNN Classification** [NLP From Scratch: Classifying Names with a Character-Level RNN](https://pytorch.org/tutorials/intermediate/char_rnn_classification_tutorial.html) ++ **pytorch+NLP Transformer Language Modeling** [Language Modeling with nn.Transformer and TorchText](https://pytorch.org/tutorials/beginner/transformer_tutorial.html)