Skip to content

Commit a9d9360

Browse files
authored
Support include predictions in catalog exports (#1935)
1 parent 8581e98 commit a9d9360

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

libs/labelbox/src/labelbox/schema/catalog.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ def _export(
104104
"interpolated_frames": False,
105105
"all_projects": False,
106106
"all_model_runs": False,
107+
"predictions": False,
107108
}
108109
)
109110
validate_catalog_export_params(_params)

libs/labelbox/src/labelbox/schema/data_row.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ def _export(
315315
"interpolated_frames": False,
316316
"all_projects": False,
317317
"all_model_runs": False,
318+
"predictions": False,
318319
}
319320
)
320321

libs/labelbox/src/labelbox/schema/dataset.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,7 @@ def _export(
392392
"interpolated_frames": False,
393393
"all_projects": False,
394394
"all_model_runs": False,
395+
"predictions": False,
395396
}
396397
)
397398
validate_catalog_export_params(_params)

libs/labelbox/src/labelbox/schema/export_params.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ class CatalogExportParams(DataRowParams):
2929
interpolated_frames: Optional[bool]
3030
all_projects: Optional[bool]
3131
all_model_runs: Optional[bool]
32+
predictions: Optional[bool]
3233

3334

3435
class ModelRunExportParams(DataRowParams):

libs/labelbox/src/labelbox/schema/slice.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ def _export(
160160
"interpolated_frames": False,
161161
"all_projects": False,
162162
"all_model_runs": False,
163+
"predictions": False,
163164
}
164165
)
165166
validate_catalog_export_params(_params)

0 commit comments

Comments
 (0)