We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc70dd3 commit 41cae4fCopy full SHA for 41cae4f
1 file changed
openml/runs/run.py
@@ -326,9 +326,9 @@ def _create_run_from_xml(xml):
326
raise ValueError('Could not find keys "value" or "array_data" '
327
'in %s' % str(evaluation_dict.keys()))
328
329
- if 'oml:repeat' in evaluation_dict:
330
- repeat = int(evaluation_dict['oml:repeat'])
331
- fold = int(evaluation_dict['oml:fold'])
+ if '@repeat' in evaluation_dict and '@fold' in evaluation_dict:
+ repeat = int(evaluation_dict['@repeat'])
+ fold = int(evaluation_dict['@fold'])
332
repeat_dict = detailed_evaluations[key]
333
fold_dict = repeat_dict[repeat]
334
fold_dict[fold] = value
0 commit comments