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 b8b53b5 + a26ab04 commit 35770e2Copy full SHA for 35770e2
labelbox/schema/export_params.py
@@ -38,6 +38,7 @@ class CatalogExportParams(DataRowParams):
38
39
class ModelRunExportParams(DataRowParams):
40
predictions: Optional[bool]
41
+ model_run_details: Optional[bool]
42
43
44
def _validate_array_length(array, max_length, array_name):
labelbox/schema/model_run.py
@@ -569,6 +569,8 @@ def _export(
569
_params.get('data_row_details', False),
570
"includePredictions":
571
_params.get('predictions', False),
572
+ "includeModelRunDetails":
573
+ _params.get('model_run_details', False),
574
},
575
"streamable": streamable
576
}
0 commit comments