code/artificial_intelligence/src/logistic_regression/README.md
The logistical regression algorithm build upon linear regression and is basically a supervised classification algorithm. In a classification problem, the target variable (or output), Y, can take only discrete values for given set of features (or inputs), X. We can also say that the target variable is categorical. Based on the number of categories, Logistic regression can be classified as:
This article is obtained as a reference from Geeksforgeeks