Understanding Logistic Regression: Theory, Intuition, and Applications
Author(s): Abinaya Subramaniam Originally published on Towards AI. Logistic Regression — Image by Author You may already be familiar with linear regression, which models a straight line relationship between input features and a continuous output. However, when the output variable is categorical, …
Handling Imbalanced Datasets in Machine Learning: SMOTE, Oversampling & Undersampling Explained
Author(s): Abinaya Subramaniam Originally published on Towards AI. Imbalanced Datasets — Image by Author What are imbalanced Datasets? In many real-world classification problems, the number of samples in each class is not balanced. This is called an imbalanced dataset. For example, in …
The Power of Prolog: A Comprehensive Guide to Logic Programming for AI
Author(s): Abinaya Subramaniam Originally published on Towards AI. Programming in Logic — Image by Author In procedural or object-oriented programming (OOP), such as languages like C, Java, or Python, the focus is on how to do things. In these languages, we write …