You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm implementing a project that compares traditional Machine Learnind and AutoML-based metrics.
I verified that there are parameters (arguments) that exist in AutoSklearnClassifier, but that do not exist in the implementation of AutoSklearn2Classifier.
One of the most important parameters that I use is "scoring_functions", which allows me to pass a list of objects of the Scorer type so that, when returning from the fit method, I can analyze the results of the evaluated metrics.
How can I make use of the "scoring_functions" and initial_configurations_via_metalearning parameters when implementing AutoSklearn2Classifier?
Why don't we have the same AutoSklearnClassifier parameters available in AutoSklearn2Classifier (at least the parameters linked to metrics)?
Why don't we have the same AutoSklearnClassifier parameters available in AutoSklearn2Classifier (at least the parameters linked to metrics)?
Some of these are automatically set by the AutoSklearn2Classifier based on the dataset characteristics, such as the resampling strategy and the meta-learning.
The scoring functions was an oversight when implementing this new feature, they should be available to the AutoSklearn2Classifier as well. Would you like to create a PR to add them?
Good afternoon.
I'm implementing a project that compares traditional Machine Learnind and AutoML-based metrics.
I verified that there are parameters (arguments) that exist in AutoSklearnClassifier, but that do not exist in the implementation of AutoSklearn2Classifier.
One of the most important parameters that I use is "scoring_functions", which allows me to pass a list of objects of the Scorer type so that, when returning from the fit method, I can analyze the results of the evaluated metrics.
How can I make use of the "scoring_functions" and initial_configurations_via_metalearning parameters when implementing AutoSklearn2Classifier?
Why don't we have the same AutoSklearnClassifier parameters available in AutoSklearn2Classifier (at least the parameters linked to metrics)?
AutoSklearnClassifier
AutoSklearn2Classifier
Thanks
The text was updated successfully, but these errors were encountered: