From 065d3dc874d5c66768eaf9313ee0648616db3c92 Mon Sep 17 00:00:00 2001 From: Tharun Kumar <83574493+Tharun-02@users.noreply.github.com> Date: Thu, 18 Jan 2024 19:16:47 +0530 Subject: [PATCH] Update fcc_sms_text_classification.ipynb Fixed Typo --- .../fcc_sms_text_classification.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Neural Network SMS Text Classifier/fcc_sms_text_classification.ipynb b/Neural Network SMS Text Classifier/fcc_sms_text_classification.ipynb index dbe7062..b5ae8c6 100644 --- a/Neural Network SMS Text Classifier/fcc_sms_text_classification.ipynb +++ b/Neural Network SMS Text Classifier/fcc_sms_text_classification.ipynb @@ -422,7 +422,7 @@ "source": [ "vocabulary_dict = {}\n", "for messgae in train_message:\n", - " for vocabulary in messgae.split():\n", + " for vocabulary in message.split():\n", " if vocabulary not in vocabulary_dict:\n", " vocabulary_dict[vocabulary] = 1\n", " else:\n", @@ -658,4 +658,4 @@ ] } ] -} \ No newline at end of file +}