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
File "./code/CornerNet-Lite/core/sample/init.py", line 5, in data_sampling_func
return globals()[sys_configs.sampling_function](sys_configs, db, k_ind, data_aug, debug)
File "./code/CornerNet-Lite/core/sample/cornernet.py", line 139, in cornernet
tl_regrs[b_ind, tag_ind, :] = [fxtl - xtl, fytl - ytl]
IndexError: index 128 is out of bounds for axis 1 with size 128
Solution:
bounding boxes number of current image exceed 128
set max_tag_len in cornetnet.py = 500 or max number of boxes in images
The text was updated successfully, but these errors were encountered:
File "./code/CornerNet-Lite/core/sample/init.py", line 5, in data_sampling_func
return globals()[sys_configs.sampling_function](sys_configs, db, k_ind, data_aug, debug)
File "./code/CornerNet-Lite/core/sample/cornernet.py", line 139, in cornernet
tl_regrs[b_ind, tag_ind, :] = [fxtl - xtl, fytl - ytl]
IndexError: index 128 is out of bounds for axis 1 with size 128
Solution:
bounding boxes number of current image exceed 128
set max_tag_len in cornetnet.py = 500 or max number of boxes in images
The text was updated successfully, but these errors were encountered: