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
As you can see here, anything that is not 'Sparse_ARFF' gets a parquet_url. This is incorrect, see e.g., www.openml.org/d/1243 which has Rimage data format (not supported).
The check should probably be changed to == "ARFF" instead based on the list of stored formats (the test server also sports additional formats, including lower-case 'sparse_arff'):
Went ahead and labeled this wontfix since API V2 is on the way and it doesn't really impact people (I imagine all datasets that are not ARFF never got out of processing anyway). It's a minor fix though so be my guest.
We might also consider deactivating any of the non-arff datasets (as part of the dataset clean up).
The text was updated successfully, but these errors were encountered:
As you can see here, anything that is not
'Sparse_ARFF'
gets aparquet_url
. This is incorrect, see e.g., www.openml.org/d/1243 which hasRimage
data format (not supported).The check should probably be changed to
== "ARFF"
instead based on the list of stored formats (the test server also sports additional formats, including lower-case'sparse_arff'
):Went ahead and labeled this
wontfix
since API V2 is on the way and it doesn't really impact people (I imagine all datasets that are not ARFF never got out of processing anyway). It's a minor fix though so be my guest.We might also consider deactivating any of the non-arff datasets (as part of the dataset clean up).
The text was updated successfully, but these errors were encountered: