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
I suppose, that the code in datav1.py has a bug in line 572. The returned semantic labels are a concatenation of all parent node labels down to the leaf node. This results in errors in the visualization script vis_pc.ipynb, especially in vis_utils.py in function draw_partnet_objects(...) in line 240 color = sem_colors[part_sems[jj]
The text was updated successfully, but these errors were encountered:
GregorKobsik
changed the title
[Bug: Data Loader] The loaded semantic labels are bugged
[Bug: datav1.py] The loaded semantic labels are bugged
Mar 29, 2023
Description:
I suppose, that the code in
datav1.py
has a bug in line 572. The returned semantic labels are a concatenation of all parent node labels down to the leaf node. This results in errors in the visualization scriptvis_pc.ipynb
, especially invis_utils.py
in functiondraw_partnet_objects(...)
in line 240color = sem_colors[part_sems[jj]
Solution:
DSG-Net/code/datav1.py
Line 572 in 6c6d117
You can fix it by replacing the code with:
node.full_label = node.label
Example (Object #2197):
Current output
Expected output (after fix)
Can anyone confirm this bug, too?
The text was updated successfully, but these errors were encountered: