mljar / automl_comparison

Comparison of automatic machine learning libraries
Apache License 2.0
26 stars 7 forks source link

Benchmark reports logloss, but benchmark does not tell AutoML systems to optimize for logloss #3

Open ledell opened 3 years ago

ledell commented 3 years ago

I noticed that you're reporting logloss as the metric to evaluate systems, but you're not passing this information to any of the AutoML systems. Both auto-sklearn and H2O AutoML (maybe MLJar too?) have the ability to optimize and choose a leader model based on the metric which you want to evaluate, so this should be explicitly specified in a benchmark.

pplonski commented 3 years ago

You are right. There is no metric passed. I don't remember why it wasn't set.

Anyway, I've moved MLJAR AutoML engine into open-source https://github.com/mljar/mljar-supervised (docs: https://supervised.mljar.com) and added it to openml/automlbenchmark (although I need to update the mljar-supervised version there, after adding golden features and features selection as new steps).

ledell commented 3 years ago

@pplonski I've seen the new MLJar supervised; cool to see it open sourced! I saw it's been added to the openml/benchmark too, thanks!