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 +}