Classification with PyCaret
Learn how to import necessary libraries and datasets for classification with PyCaret.
We'll cover the following...
Classification is one of the fundamental supervised learning tasks. Its goal is to predict a categorical variable known as the class label. This task is known as binary classification when there are only two classes ( and ), or multiclass classification in case there are more. One of the most widely used binary classification models is logistic regression. It is defined in the following equation:
...