Decision Tree

Decision tree Decision tree is a type of supervised learning algorithm that is mostly used in classification problems. It works for both categorical and continuous input and output variables. In this technique, we split the population into two or more Read More …

LOGISTIC REGRESSION

What is logistic regression? Logistic regression a classification algorithm used for binary classification given a set of independent variables. The output variables will be categorical like (yes/no), (0 or 1) etc. it predicts the probability of occurrence of an event Read More …

OVERFITTING

Overfitting overview Overfitting of a model means that the model is too well trained i.e. it takes the noises and fluctuations in the training data as a set of observations to train the model, due to this the model’s ability Read More …

LINEAR REGRESSION

What is a linear regression? linear regression gives the relationship between the variables i.e dependent variable and independent variable. The dependent variable is continuous and the independent variable may be continuous or discrete linear regression is classified into two types: Read More …

ML MODEL Overview

Introduction to ML Model. Performing machine learning involves creating model, which is trained on some training data and then can process additional data to make predictions. A machine learning model can be a mathematical representation of a real-world application. To Read More …