You are on page 1of 5

what is

CLASSIFICATION
xevensolutionsfreeaicourse
saniasarfaraz
CLASSIFICATION
Classification is a supervised machine learning
method where the model tries to predict the correct
label of a given input data. In classification, the
model is fully trained using the training data, and
then it is evaluated on test data before being used
to perform prediction on new unseen data.
THE PROCESS OF CLASSIFICATION TYPICALLY INVOLVES TWO MAIN STEPS:

Training:
During the training phase, the machine learning model is presented
with a labeled dataset, where each data point is associated with a
known class label. The model learns from this data and tries to find
patterns or relationships between the input features and the
corresponding class labels.
Prediction:
Once the model is trained, it can be used to predict the class labels
for new, unseen data. The model takes the input features of the new
data point and assigns it to the class that it believes is the most
appropriate based on what it has learned from the training data.
Classification is widely used in various real-world applications, such as
email spam detection, sentiment analysis, image recognition, medical
diagnosis, and more. There are different algorithms and techniques for
performing classification, including logistic regression, support vector
machines (SVM), decision trees, random forests, and deep learning-
based approaches like neural networks.

You might also like