We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9da2c2 commit a42e00fCopy full SHA for a42e00f
util_scripts/calculate_map_cartucho.py
@@ -110,7 +110,8 @@
110
mAP_results[class_name][i] = class_mAP
111
112
# Save mAP results for this IoU value as a different folder name, then delete modified script
113
- os.rename('output','outputs/output_iou_%.2f' % iou_thresh)
+ newpath = os.path.join(output_path,'output_iou_%.2f' % iou_thresh)
114
+ os.rename('output',newpath)
115
os.remove('main_modified.py')
116
117
# Okay, we found mAP at each IoU value! Now we just need to average the mAPs and display them.
0 commit comments