I am trying to use AutoSklearn with a specific list of algorithms
Logistic Regression
Random Forest
Gaussian NB
SVC
ADA
MLP
I know I can use these parameters.
mdl = autosklearn.classification.AutoSklearn2Classifier(
include = {
'classifier': ["random_forest", "gaussian_nb", "libsvm_svc", "adaboost"],
'feature_preprocessor': ["no_preprocessing"]
#K-Folds?
},
exclude=None,
I managed to find the code for these algorithms
Random Forest ==> "random_forest"
Gaussian NB ==> "gaussian_nb"
SVC ==> "libsvm_svc"
ADA ==> "adaboost"
but could not find the codes for
Logistic Regression
MLP
can anyone tell me what are these?