Skip to content

Commit 03d84cc

Browse files
committed
2 parents 2d85248 + 93878eb commit 03d84cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/practice_projects/naive_bayes_tutorial/Naive_Bayes_tutorial.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"\n",
99
"Spam detection is one of the major applications of Machine Learning in the interwebs today. Pretty much all of the major email service providers have spam detection systems built in and automatically classify such mail as 'Junk Mail'. \n",
1010
"\n",
11-
"In this mission we will be using the Naive Bayes algorithm to create a model that can classify <a href = 'https://archive.ics.uci.edu/ml/datasets/SMS+Spam+Collection'> SMS messages </a> as spam or not spam, based on the training we give to the model. It is important to have some level of intuition as to what a spammy text message might look like. Usually they have words like 'free', 'win', 'winner', 'cash', 'prize' and the like in them as these texts are designed to catch your eye and in some sense tempt you to open them. Also, spam messages tend to have words written in all capitals and also tend to use a lot of exclamation marks. To the recipient, it is usually pretty straightforward to identify a spam text and our objective here is to train a model to do that for us!\n",
11+
"In this mission we will be using the Naive Bayes algorithm to create a model that can classify 'https://archive.ics.uci.edu/ml/datasets/SMS+Spam+Collection' SMS messages as spam or not spam, based on the training we give to the model. It is important to have some level of intuition as to what a spammy text message might look like. Usually they have words like 'free', 'win', 'winner', 'cash', 'prize' and the like in them as these texts are designed to catch your eye and in some sense tempt you to open them. Also, spam messages tend to have words written in all capitals and also tend to use a lot of exclamation marks. To the recipient, it is usually pretty straightforward to identify a spam text and our objective here is to train a model to do that for us!\n",
1212
"\n",
1313
"Being able to identify spam messages is a binary classification problem as messages are classified as either 'Spam' or 'Not Spam' and nothing else. Also, this is a supervised learning problem, as we will be feeding a labelled dataset into the model, that it can learn from, to make future predictions. "
1414
]
@@ -39,7 +39,7 @@
3939
"### Step 1.1: Understanding our dataset ### \n",
4040
"\n",
4141
"\n",
42-
"We will be using a <a href = 'https://archive.ics.uci.edu/ml/datasets/SMS+Spam+Collection'> dataset </a> from the UCI Machine Learning repository which has a very good collection of datasets for experimental research purposes. \n",
42+
"We will be using a 'https://archive.ics.uci.edu/ml/datasets/SMS+Spam+Collection' dataset from the UCI Machine Learning repository which has a very good collection of datasets for experimental research purposes. \n",
4343
"\n",
4444
"\n",
4545
" ** Here's a preview of the data: ** \n",

0 commit comments

Comments
 (0)