Link
Machine Learning
How to Run 30 Machine Learning Models with a Few Lines of Code
import lazypredict
from lazypredict.Supervised import LazyClassifier
Finally, let’s run the models and see how it goes.
clf = LazyClassifier(verbose=0,ignore_warnings=True)
models, predictions = clf.fit(X_train, X_test, y_train, y_test)
models