My code is:
keep, num_to_keep, _ = nms(proposals, scores, overlap=nms_thres, top_k=nms_topk)
And I'm getting this error:
File "C:\Users\RaSoul\LaneATT\lib\models\laneatt.py", line 129, in nms
keep, num_to_keep, _ = nms(proposals, scores, overlap=nms_thres, top_k=nms_topk)
TypeError: 'module' object is not callable
I'm confused with the error, why is that?