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 347c4a6 commit 88b87adCopy full SHA for 88b87ad
openml/runs/run.py
@@ -89,7 +89,7 @@ def __str__(self):
89
fields["Uploader Profile"] = "{}u/{}".format(base_url, self.uploader)
90
if self.run_id is not None:
91
fields["Run URL"] = "{}r/{}".format(base_url, self.run_id)
92
- if self.task_evaluation_measure in self.evaluations:
+ if self.evaluations is not None and self.task_evaluation_measure in self.evaluations:
93
fields["Result"] = self.evaluations[self.task_evaluation_measure]
94
95
# determines the order in which the information will be printed
0 commit comments