refactoring-ai / predicting-refactoring-ml

Refactoring recommendation via ML
MIT License
28 stars 8 forks source link

Easy Classifier Selection in ML Pipeline #186

Closed jan-gerling closed 4 years ago

jan-gerling commented 4 years ago

In previous work not all of the classifiers performed well and/ or took a lot of time for training, thus we would like to easily choose a set of classifiers for a training session. Give the user the choice to select classifiers in the pipeline, e.g. by giving a list of enums ([LR, SVM, RFC]).

mauricioaniche commented 4 years ago

That’s already possible! You just have to configure it in the config file !

On Sat, 11 Jul 2020 at 10:49, Jan Gerling notifications@github.com wrote:

In previous work not all of the classifiers performed well and/ or took a lot of time for training, thus we would like to easily choose a set of classifiers for a training session. Give the user the choice to select classifiers in the pipeline, e.g. by giving a list of enums ([LR, SVM, RFC]).

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/refactoring-ai/predicting-refactoring-ml/issues/186, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAAYTTFZBME57RU3TLEEXADR3ARQRANCNFSM4OXGTMZQ .

--

Maurício Aniche Delft University of Technology http://www.mauricioaniche.com

jan-gerling commented 4 years ago

Thanks for the info Mauricio.