main.py [426:436]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if gt_vios == pd_vios:
                this_iou = 1
            else:
                this_iou = len(gt_vios.intersection(pd_vios)) / len(gt_vios.union(pd_vios))

            iou_turn.append(this_iou)
            this_exact_match = 1 if this_iou == 1 else 0
            exact_match_turn.append(this_exact_match)
            if not this_exact_match:
                conversation_correct = 0
        conversation_all_correct.append(conversation_correct)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



main.py [474:484]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if gt_vios == pd_vios:
                this_iou = 1
            else:
                this_iou = len(gt_vios.intersection(pd_vios)) / len(gt_vios.union(pd_vios))

            iou_turn.append(this_iou)
            this_exact_match = 1 if this_iou == 1 else 0
            exact_match_turn.append(this_exact_match)
            if not this_exact_match:
                conversation_correct = 0
        conversation_all_correct.append(conversation_correct)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



