LazyPredict is a wrapper upon sklearn, that takes in your training data and tests it against multiple algorithms. It then returns a dataframe with the accuracy scores of each algorithm. This is useful when you are just too lazy to compare multiple algorithms. Installation pip install lazypredict Usage LazyPredict has 2 modes currently - Regressors and Classifiers Regressors Regression is a supervised learning task where the goal is to predict the output of a continuous value, like a price or a ...