10 rows = (len(sorted_keep_index) // columns)+1
12 figsize = (30.0, rows*2)
13 plt.figure(figsize=figsize)
15 for index
in tqdm(sorted_keep_index):
17 image_path = os.path.join(crop_image_path, test_image_list[index[0]])
18 image = Image.open(image_path)
21 title_txt = f
'{test_image_list[index[0]]} | {index[1]:.4f}'
22 plt.subplot(rows, columns, image_index)