gen_arranger_output.py [34:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    for i in range(len(data)):
        data[i] = data[i].split("<|response|>")
        if len(data[i]) == 1:
            data[i] += ['']
        elif len(data[i]) > 2:
            data[i] = ["<|response|>".join(data[i][:-2]), data[i][-1]]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



utils_multiple_choice.py [129:134]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            for i in range(len(data)):
                data[i] = data[i].split("<|response|>")
                if len(data[i]) == 1:
                    data[i] += ['']
                elif len(data[i]) > 2:
                    data[i] = ["<|response|>".join(data[i][:-2]), data[i][-1]]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



