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 89677bb commit 7eb3905Copy full SHA for 7eb3905
1 file changed
openml/runs/run.py
@@ -79,8 +79,8 @@ def publish(self):
79
"""
80
predictions = arff.dumps(self._generate_arff())
81
description_xml = self._create_description_xml()
82
- data = {'predictions': predictions, 'description':
83
- description_xml}
+ data = {'predictions': ("predictions.csv", predictions),
+ 'description': ("description.xml", description_xml)}
84
return_code, return_value = _perform_api_call(
85
"/run/", file_elements=data)
86
return return_code, return_value
0 commit comments