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.
1 parent ba49f69 commit 22db9ddCopy full SHA for 22db9dd
luxonis_ml/data/parsers/coco_parser.py
@@ -63,6 +63,10 @@ def _detect_dataset_dir_format(
63
64
existing = [d.name for d in dataset_dir.iterdir() if d.is_dir()]
65
66
+ # Clash with NATIVE format
67
+ if "val" in existing:
68
+ return None, []
69
+
70
fo = [s for s in fiftyone_splits if s in existing]
71
rf = [s for s in roboflow_splits if s in existing]
72
0 commit comments