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 debug the code of demo.py #L112 , the contens of scores_noNMS #L122 is changed automatically. Finally, scores stored in scores_noNMS of each group is the same as that of the last group. Is it right?
The text was updated successfully, but these errors were encountered:
Oh, that's pretty weird. scores_noNMS should store each score_noNMS. Because I am using a append() function. Can you paste the debug log or any related information?
When I adjusted the code, contents of scores_noNMS turned to normal.
for i in range(0,16):
real_loc = transformBoxInvert([predictions[0,0,:,3i+0],predictions[0,0,:,3i+1]],xmin,ymin,xmax,ymax,64)
pred_noNMS.append(real_loc)
aa=np.array([predictions[0,0,0,3*i+2]])
score_noNMS.append(aa)
preds_noNMS.append(pred_noNMS)
scores_noNMS.append(score_noNMS)
Hi, when I debug the code of demo.py #L112 , the contens of scores_noNMS #L122 is changed automatically. Finally, scores stored in scores_noNMS of each group is the same as that of the last group. Is it right?
The text was updated successfully, but these errors were encountered: