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
Hi,
When I pass customized parameter p with p.catIds = [15, 30] into COCOEval.accumulate, k_list would return [0, 1] since both 15 and 30 are in the original set of COCO catIds.
# retrieve E at each category, area range, and max number of detectionsfork, k0inenumerate(k_list):
Nk=k0*A0*I0fora, a0inenumerate(a_list):
Na=a0*I0form, maxDetinenumerate(m_list):
E= [self.evalImgs[Nk+Na+i] foriini_list]
But E will retrieve information of category id 0, 1 instead of the specified 15, 30. The same logic applies to a_list and i_list as well.
The text was updated successfully, but these errors were encountered:
Hi,
When I pass customized parameter p with p.catIds = [15, 30] into COCOEval.accumulate, k_list would return [0, 1] since both 15 and 30 are in the original set of COCO catIds.
But E will retrieve information of category id 0, 1 instead of the specified 15, 30. The same logic applies to a_list and i_list as well.
The text was updated successfully, but these errors were encountered: