VIDA-NYU / alpha-automl

Alpha-AutoML is a Python library for automatically generating end-to-end machine learning pipelines.
https://alpha-automl.readthedocs.io
Apache License 2.0
19 stars 3 forks source link

Error in binary semisupervised classification #65

Closed roquelopez closed 1 year ago

roquelopez commented 1 year ago

I got the below error calling the automl.score() method in https://github.com/VIDA-NYU/alpha-automl/blob/devel/examples/semi_supervised_classification.ipynb

ValueError: Target is multiclass but average='binary'. Please choose another average setting, one of [None, 'micro', 'macro', 'weighted'].

roquelopez commented 1 year ago

The error was raised because the test dataset didn't have labels. I updated the test dataset and it was fixed.