Open kellenf opened 5 years ago
I notice you use the roi_pooling_forward and roi_pooling_forward_cuda functions. But in your code it is:
def roi_pooling_forward(pooled_height, pooled_width, spatial_scale, _features, rois, output): return None
def roi_pooling_forward_cuda(pooled_height, pooled_width, spatial_scale, features, rois, output, argmax): return None
......I don't know why it would be this???can you help me? Thank you .(I have not change the code)
I think you don't choose the roi_pooing,if you not change the code,the code use RCNN_roi_align not roi_pooling.
I notice you use the roi_pooling_forward and roi_pooling_forward_cuda functions. But in your code it is:
def roi_pooling_forward(pooled_height, pooled_width, spatial_scale, _features, rois, output): return None
def roi_pooling_forward_cuda(pooled_height, pooled_width, spatial_scale, features, rois, output, argmax): return None
......I don't know why it would be this???can you help me? Thank you .(I have not change the code)