Hi,
I looked into the "old" OPENML scenario. I already fixed some issues. Right now my tool complains that the order of the columns in algorithm_runs.arff is wrong. Right now it is:
@attribute instance_id STRING
@attribute algorithm STRING
@attribute acc numeric
@attribute repetition numeric
@attribute runstatus {ok, timeout, memout, not_applicable, crash, other}
but it should be
@ATTRIBUTE instance_id STRING
@ATTRIBUTE repetition NUMERIC
@ATTRIBUTE algorithm STRING
@ATTRIBUTE acc NUMERIC
@ATTRIBUTE runstatus {ok, timeout, memout, not_applicable, crash, other}
Furthermore, I wonder why every feature is in its own group. Since there are no feature costs and the runstatus is always ok, we could put all features into one group.
In the end, this is not a real issue.
Best,
Marius
Hi,
I looked into the "old" OPENML scenario. I already fixed some issues. Right now my tool complains that the order of the columns in algorithm_runs.arff is wrong. Right now it is:
but it should be
Furthermore, I wonder why every feature is in its own group. Since there are no feature costs and the runstatus is always
ok, we could put all features into one group.In the end, this is not a real issue.
Best,
Marius