LMZimmer / Auto-PyTorch_refactor

Apache License 2.0
0 stars 2 forks source link

Encoding targets are not supported #59

Closed franchuterivera closed 3 years ago

franchuterivera commented 3 years ago

When running commands like:

X, y = sklearn.datasets.fetch_openml(data_id=13, return_X_y=True, as_frame=False)

The y downloaded from openml is not encoded, that is, the target is a string (yet the task is a simple binary classification).

We need to add a pre-processing for this.