From 566988a9ff6ca28f0be07d1b209df12b806367e0 Mon Sep 17 00:00:00 2001 From: Kishan Savant Date: Wed, 31 May 2023 23:47:30 +0530 Subject: [PATCH] Fixes #1460 --- intermediate_source/char_rnn_classification_tutorial.py | 2 +- intermediate_source/char_rnn_generation_tutorial.py | 2 +- intermediate_source/seq2seq_translation_tutorial.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/intermediate_source/char_rnn_classification_tutorial.py b/intermediate_source/char_rnn_classification_tutorial.py index f36b92fb17..9b1f255a51 100644 --- a/intermediate_source/char_rnn_classification_tutorial.py +++ b/intermediate_source/char_rnn_classification_tutorial.py @@ -2,7 +2,7 @@ """ NLP From Scratch: Classifying Names with a Character-Level RNN ************************************************************** -**Author**: `Sean Robertson `_ +**Author**: `Sean Robertson `_ We will be building and training a basic character-level RNN to classify words. This tutorial, along with the following two, show how to do diff --git a/intermediate_source/char_rnn_generation_tutorial.py b/intermediate_source/char_rnn_generation_tutorial.py index 431c2bf43d..6068c84cd0 100644 --- a/intermediate_source/char_rnn_generation_tutorial.py +++ b/intermediate_source/char_rnn_generation_tutorial.py @@ -2,7 +2,7 @@ """ NLP From Scratch: Generating Names with a Character-Level RNN ************************************************************* -**Author**: `Sean Robertson `_ +**Author**: `Sean Robertson `_ This is our second of three tutorials on "NLP From Scratch". In the `first tutorial ` diff --git a/intermediate_source/seq2seq_translation_tutorial.py b/intermediate_source/seq2seq_translation_tutorial.py index 853cb2aed4..7953854e60 100644 --- a/intermediate_source/seq2seq_translation_tutorial.py +++ b/intermediate_source/seq2seq_translation_tutorial.py @@ -2,7 +2,7 @@ """ NLP From Scratch: Translation with a Sequence to Sequence Network and Attention ******************************************************************************* -**Author**: `Sean Robertson `_ +**Author**: `Sean Robertson `_ This is the third and final tutorial on doing "NLP From Scratch", where we write our own classes and functions to preprocess the data to do our NLP