Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Unable to convert multi-class instance segmentation dataset from YOLO TXT format #269

Open
adbcode opened this issue Feb 1, 2024 · 1 comment

Comments

@adbcode
Copy link

adbcode commented Feb 1, 2024

When using label-studio-converter==0.0.54rc0, with a YOLO TXT dataset with polygon masks and two classes, I get the following error trace:

  File "<frozen runpy>", line 198, in _run_module_as_main
  File "<frozen runpy>", line 88, in _run_code
  File "...label-studio-converter.exe\__main__.py", line 7, in <module>
  File "...\label_studio_converter\main.py", line 189, in main
    imports(args)
  File "...\label_studio_converter\main.py", line 160, in imports
    import_yolo.convert_yolo_to_ls(
  File "...\label_studio_converter\imports\yolo.py", line 113, in convert_yolo_to_ls
    label_id, x, y, width, height = line.split()
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: too many values to unpack (expected 5)

Command used for conversion: label-studio-converter import yolo -i <dataset_root> -o <dataset_name>.json

The codebase suggests that it expects only detection scenario with bounding boxes. It is unclear if segmentation masks are supported as the examples in the documentation only mention detection cases.

Another member asked a similar question (#208 (comment)) but there was yet to be an answer about this.

Please consider supporting polygons for segmentation masks if not already supported.

@Sergeant007
Copy link

Same for "label-studio-converter==0.0.58" (while importing a dataset with polygons, not boxes)

Traceback (most recent call last):
  File ".../label-studio-converter", line 8, in <module>
    sys.exit(main())
  File ".../label_studio_converter/main.py", line 189, in main
    imports(args)
  File ".../label_studio_converter/main.py", line 160, in imports
    import_yolo.convert_yolo_to_ls(
  File ".../label_studio_converter/imports/yolo.py", line 113, in convert_yolo_to_ls
    label_id, x, y, width, height = line.split()
ValueError: too many values to unpack (expected 5)

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants