/Machine-Learning-Classifications

Classification is the process of predicting the class of given data points. Classes are sometimes called as targets/ labels or categories.

Primary LanguageJupyter NotebookMIT LicenseMIT


Machine-Learning-Classification



1_9iNsnOm0I3YFF-A_ryp5Mg



Classification Process

1_PAqzvCxPjpDN8RC9HQw45w



Classification is the process of predicting the class of given data points. Classes are sometimes called as targets/ labels or categories. Classification predictive modeling is the task of approximating a mapping function (f) from input variables (X) to discrete output variables (y).

For example, spam detection in email service providers can be identified as a classification problem. This is s binary classification since there are only 2 classes as spam and not spam. A classifier utilizes some training data to understand how given input variables relate to the class. In this case, known spam and non-spam emails have to be used as the training data. When the classifier is trained accurately, it can be used to detect an unknown email.

Classification belongs to the category of supervised learning where the targets also provided with the input data. There are many applications in classification in many domains such as in credit approval, medical diagnosis, target marketing etc.