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 have been facing this issue from two days, I tried to figure that out but could not come up with a solution. I would really appreciate if someone can guide me where I am going wrong.
The below line calls the RCNN with a list and rois as input.
RCNN class in turns calls the roi_pooling and which calls ROIAlignFunction. So the problem is that, the first input from RCNN is the list which is forwarded to all the following function calls. However the ROIAlignFunction expects the first input as variable not as a list (Also extracts its shape in ROIAlignFunction class for further use, which throws an error with list as in input)
Can someone guide me if I have missed out something? Or if this list is converted to a variable somewhere on the way? Thanks in advance.
The text was updated successfully, but these errors were encountered:
Hi,
I have been facing this issue from two days, I tried to figure that out but could not come up with a solution. I would really appreciate if someone can guide me where I am going wrong.
The below line calls the RCNN with a list and rois as input.
UPSNet/upsnet/models/resnet_upsnet.py
Line 200 in aa8434e
RCNN class in turns calls the roi_pooling and which calls ROIAlignFunction. So the problem is that, the first input from RCNN is the list which is forwarded to all the following function calls. However the ROIAlignFunction expects the first input as variable not as a list (Also extracts its shape in ROIAlignFunction class for further use, which throws an error with list as in input)
Can someone guide me if I have missed out something? Or if this list is converted to a variable somewhere on the way? Thanks in advance.
The text was updated successfully, but these errors were encountered: