From aa6521859e2e1dfb57326110103b5cfd553770be Mon Sep 17 00:00:00 2001 From: Roland Tannous Date: Mon, 9 Mar 2026 23:37:00 +0000 Subject: [PATCH] resolved format_conversion conflict --- studio/backend/utils/datasets/format_conversion.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/studio/backend/utils/datasets/format_conversion.py b/studio/backend/utils/datasets/format_conversion.py index 83fb23ef82..aeed1ec23e 100644 --- a/studio/backend/utils/datasets/format_conversion.py +++ b/studio/backend/utils/datasets/format_conversion.py @@ -386,7 +386,11 @@ def convert_to_vlm_format( try: from huggingface_hub import HfApi _notify("Resolving image filenames from HF repo...") +<<<<<<< HEAD logger.info(f"🔍 Image column contains bare filenames (e.g. '{first_image}') — building repo lookup...") +======= + print(f"🔍 Image column contains bare filenames (e.g. '{first_image}') — building repo lookup...") +>>>>>>> bf35780 (fix: resolve bare-filename images via HF repo lookup) repo_files = HfApi().list_repo_files(dataset_name, repo_type="dataset") _image_lookup = { os.path.basename(f): f @@ -394,12 +398,21 @@ def convert_to_vlm_format( if any(f.lower().endswith(ext) for ext in _IMAGE_EXTS) } if first_image in _image_lookup: +<<<<<<< HEAD logger.info(f"✅ Matched {len(_image_lookup)} image files in repo (e.g. '{first_image}' → '{_image_lookup[first_image]}')") else: logger.info(f"⚠️ Built lookup with {len(_image_lookup)} images but '{first_image}' not found — falling back to local open") _image_lookup = None except Exception as e: logger.info(f"⚠️ Failed to build HF repo image lookup: {e}") +======= + print(f"✅ Matched {len(_image_lookup)} image files in repo (e.g. '{first_image}' → '{_image_lookup[first_image]}')") + else: + print(f"⚠️ Built lookup with {len(_image_lookup)} images but '{first_image}' not found — falling back to local open") + _image_lookup = None + except Exception as e: + print(f"⚠️ Failed to build HF repo image lookup: {e}") +>>>>>>> bf35780 (fix: resolve bare-filename images via HF repo lookup) _image_lookup = None # ── URL probe: 200 samples with parallel workers to estimate speed + failure rate ──