Open muditchaudhary opened 4 years ago
Moreover, I need to check what do these proposals represent
proposals[1]
In [3]: Out[3]: tensor([8., 0., 8.], device='cuda:0')
In [3]: Out[3]: tensor([8., 0., 8.], device='cuda:1')
proposals[3]
In [4]: Out[4]: tensor([24., 0., 8.], device='cuda:1')
In [4]: Out[4]: tensor([24., 0., 8.], device='cuda:0')
gt_bboxes[1]
In [5]: Out[5]: tensor([304.9307, 240.0716, 700.5638, 717.9418], device='cuda:1')
In [5]: Out[5]: tensor([217.8107, 1.8210, 288.8287, 123.9898], device='cuda:0')
It seems like it does not represent bbox.
I am trying to use Random Sampler and Cross Entropy Loss. But I am receiving a runtime error for sampling the points.
I tried to check the dimension size of the proposal and gt_bboxes.
Why is there a difference in dimension?