Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions libs/labelbox/src/labelbox/schema/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ def _export(
"interpolated_frames": False,
"all_projects": False,
"all_model_runs": False,
"predictions": False,
}
)
validate_catalog_export_params(_params)
Expand Down
1 change: 1 addition & 0 deletions libs/labelbox/src/labelbox/schema/data_row.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@ def _export(
"interpolated_frames": False,
"all_projects": False,
"all_model_runs": False,
"predictions": False,
}
)

Expand Down
1 change: 1 addition & 0 deletions libs/labelbox/src/labelbox/schema/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,7 @@ def _export(
"interpolated_frames": False,
"all_projects": False,
"all_model_runs": False,
"predictions": False,
}
)
validate_catalog_export_params(_params)
Expand Down
1 change: 1 addition & 0 deletions libs/labelbox/src/labelbox/schema/export_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class CatalogExportParams(DataRowParams):
interpolated_frames: Optional[bool]
all_projects: Optional[bool]
all_model_runs: Optional[bool]
predictions: Optional[bool]


class ModelRunExportParams(DataRowParams):
Expand Down
1 change: 1 addition & 0 deletions libs/labelbox/src/labelbox/schema/slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ def _export(
"interpolated_frames": False,
"all_projects": False,
"all_model_runs": False,
"predictions": False,
}
)
validate_catalog_export_params(_params)
Expand Down
Loading