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.
2 parents 72acf39 + 41cae4f commit 5234d42Copy full SHA for 5234d42
1 file changed
openml/runs/run.py
@@ -324,9 +324,9 @@ def _create_run_from_xml(xml):
324
raise ValueError('Could not find keys "value" or "array_data" '
325
'in %s' % str(evaluation_dict.keys()))
326
327
- if 'oml:repeat' in evaluation_dict:
328
- repeat = int(evaluation_dict['oml:repeat'])
329
- 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'])
330
repeat_dict = detailed_evaluations[key]
331
fold_dict = repeat_dict[repeat]
332
fold_dict[fold] = value
0 commit comments