Abhishek Wasnik

Precision and Recall in Python

Let’s talk about Precision and Recall in today’s article. Whenever we implement a classification problem (i.e decision trees) to classify data points, there are points that are often misclassified. Even though accuracy gives a general idea about how good the model is, we need more robust metrics to evaluate our model. Let’s consider an Example. […]

Precision and Recall in Python Read More »

ROC curves in Machine Learning

The ROC curve stands for Receiver Operating Characteristic curve. ROC curves display the performance of a classification model. ROC tells us how good the model is for distinguishing between the given classes, in terms of the predicted probability. In this article, we will understand ROC curves, what is AUC, and implement a binary classification problem

ROC curves in Machine Learning Read More »

Stemming and Lemmatization in Python

In the field of Natural language processing, Stemming and Lemmatization are the text normalization techniques used to prepare texts, documents for further analysis. Understanding Stemming and Lemmatization While working with language data we need to acknowledge the fact that words like ‘care’ and ‘caring’ have the same meaning but used in different forms of tenses.

Stemming and Lemmatization in Python Read More »