Cross-Validation in Machine Learning and K-fold Cross-Validation using Sklearn

Cross-Validation in Machine Learning for example K-fold Cross-Validation is a short video to describe what is Cross-Validation in Machine Learning, why do we need to do cross-validation, and how to do it using sklearn. Happy Learning !!

Read More

Print ROC AUC Receiver Operating Characteristic Area Under Curve

The receiver operating characteristic area under curve is a way to measure the performance of a classification model, may be created using algorithms like Logistic Regression. ROC-AUC is basically a graph where we plot true positive rate on y-axis and false positive rate on x-axis. If a model is good the AUC will be close to 1. Area…

Read More

Implementing Logistic Regression in 10 lines in Python

Logistic Regression is one of the most popular Machine Learning algorithm used for the classification problems. It should be noted that though there is a regression word in the name of the algorithm Logistic Regression, it is used for classification problems. A use case of Logistic regression could be, based on the symptoms for a disease that a patient has Logistic…

Read More