You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi guys, i am trying to register and train a custom panoptic dataset. I have converted the annotations to coco format.
I have only one concretcrack class and then the following is the format of the panoptic annotations
@david95j2 How to solve KeyError: 'thing_dataset_id_to_contiguous_id'
Simply try to add classes to metadata brackets it will work
the normal is to write like that :
register_coco_panoptic(
data_name, {} , image_root, panoptic_root, panoptic_json, instances_json=None
)
but to solve it write like this :
register_coco_panoptic(
data_name, {"thing_classes": ["class_1","class_2",…etc.]} , image_root, panoptic_root, panoptic_json, instances_json=None
)
Hi guys, i am trying to register and train a
custom panoptic dataset
. I have converted the annotations to coco format.I have only one concretcrack class and then the following is the format of the
panoptic annotations
Instructions To Reproduce the Issue:
However I got the following error:
How can i fix the problem? thx :)
The text was updated successfully, but these errors were encountered: