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
In spatial_transform.py there is an assertion assert n_obj <= z_wheres.shape[1] in function add_bounding_boxes. Shoudln't the index here be 0 because the z_where is (max_objects, features)?
The text was updated successfully, but these errors were encountered:
In principle z_wheres could have shape (1, max_n_objects, 3) or (max_n_objects, 3). I think the right thing to do is to change the index to 0 as you suggest, and move this assertion after this block:
In spatial_transform.py there is an assertion
assert n_obj <= z_wheres.shape[1]
in function add_bounding_boxes. Shoudln't the index here be 0 because the z_where is (max_objects, features)?The text was updated successfully, but these errors were encountered: