"# This determines the best and worst performing predictions based on the dice score of all the segments and both time frames\n",
"max_value = max(LV_dice_ES)\n",
"# Uses the LV_dice_ES list to find back the correct patient, but could be any of the lists\n",
"min_value = sorted(LV_dice_ES)[1]\n",
"\n",
"\n",
"score_sum = {LV_dice_ES[x]: sum([LV_dice_ES[x], RV_dice_ES[x], MYO_dice_ES[x], LV_dice_ED[x], RV_dice_ED[x], MYO_dice_ED[x]]) for x in range(len(LV_dice_ES))}\n",