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 forward, param coord_data: num_batch, 3, H, Wlink. But it's not real, in SalsaNextWithMotionAttention, coor_data is current_range_image, it's channel is 5;
In sample_data , :return: sample_output: num_batch, num_channel_in * kernel_size * kernel_size, H, W, link. I think the outout should be num_batch, num_channel * kernel_size * kernel_size, HxW
The text was updated successfully, but these errors were encountered:
Thank you for such meticulous coding review.
I took a quick look and recalled that this part of the annotation may be from the original RangeDet, which has not been carefully checked and modified.
It really needs to be corrected here, because in fact, any dimension can be passed in here, (x, y, z), or (x, y, z, i, r)
I found some annotation error in MetaKernel.
forward
,param coord_data: num_batch, 3, H, W
link. But it's not real, inSalsaNextWithMotionAttention
,coor_data
iscurrent_range_image
, it's channel is 5;sample_data
,:return: sample_output: num_batch, num_channel_in * kernel_size * kernel_size, H, W
, link. I think the outout should benum_batch, num_channel * kernel_size * kernel_size, HxW
The text was updated successfully, but these errors were encountered: