run_models lets you run many regression and classification models with their default parameters and rank them by RMSE or AUC.
pip install run_models
numpy
pandas
scikit-learn
xgboost
lightgbm
catboost
matplotlib
run_models
comes with two functions:
run_models.run_regressors(data, target_column)
for regression tasks - All models are ranked by RMSE.run_models.run_classifiers(data, target_column)
for classification tasks - All models are ranked y AUC.
import run_models as rm