Ekta AggarwalMar 6Working of Decision TreesTo understand what is a decision tree let us consider an example: Suppose a bank wants to decide, whether they want to give loan to a...
Ekta AggarwalMar 3K - Nearest NeighboursK-Nearest Neighbours is a simple algorithm, where the prediction for a new instance is the plurality class among its k closest neighbours.
Ekta AggarwalMar 3K-fold cross validation explanation made easy!An easy explanation of K-fold cross validation, with examples
Ekta AggarwalFeb 14One hot encoding and label encoding in PythonWhile dealing with data often there are categorical columns which can be nominal or ordinal in nature. Thus, to make best use of them we...