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 c6e4764 + 5dc5522 commit b87b24fCopy full SHA for b87b24f
src/kili/services/export/format/kili/__init__.py
@@ -107,7 +107,7 @@ def _cut_video_assets(self, assets: List[Dict]) -> List[Dict]:
107
def process_and_save(self, assets: List[Dict], output_filename: Path) -> None:
108
"""Extract formatted annotations from labels and save the json in the buckets."""
109
clean_assets = self.preprocess_assets(assets)
110
- if self.project["inputType"] != "LLM_RLHF":
+ if self.project["inputType"] in ["IMAGE", "VIDEO", "PDF"]:
111
for i, asset in enumerate(clean_assets):
112
clean_assets[i] = self.convert_to_pixel_coords(asset)
113
clean_assets[i] = _clean_json_response(asset)
0 commit comments