main.py [157:165]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    latest_intents = dict()
    for ids, output in zip(test_ids, nlu_result):
        if not is_BIO:
            conver_id, turn_id, sentence_id = ids[0], ids[1], ids[2]
        else:
            conver_id, turn_id = ids[0], ids[1]

        if conver_id not in conversations:
            conversations[conver_id] = []
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



main.py [250:258]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    latest_intents = dict()
    for ids, output in zip(test_ids, nlu_result):
        if not is_BIO:
            conver_id, turn_id, sentence_id = ids[0], ids[1], ids[2]
        else:
            conver_id, turn_id = ids[0], ids[1]

        if conver_id not in conversations:
            conversations[conver_id] = []
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



