This function retrieves a list of all models available in scikit-learn. It imports the necessary Python modules and retrieves all estimators, filtering them into classifiers and regressors.

get_model_list(venv_path = "venv")

Value

A list with two elements: - `classifiers`: A character vector of all classifier models - `regressors`: A character vector of all regressor models

Examples


# model_list <- get_model_list()
# print(model_list$classifiers)