Cartucho / mAP

mean Average Precision - This code evaluates the performance of your neural net for object recognition.
Apache License 2.0
2.91k stars 909 forks source link

Deprecation warnings with Matplotlib 3.4 #170

Open Infernolia opened 1 year ago

Infernolia commented 1 year ago

'FigureCanvasAgg' object has no attribute 'set_window_title' error on Line 704 in main.py due to the code line

fig.canvas.set_window_title('AP ' + class_name)

Infernolia commented 1 year ago

Try using fig.canvas.manager.set_window_title() instead