results / merge_list.py
Evan-Lin's picture
Evan-Lin/dpo-llama-chat
49b2d74 verified
raw
history blame contribute delete
369 Bytes
import os
import json
files = ["gigaspeech_prompt_xs_large_v3_wer_0-20000.json", "gigaspeech_prompt_xs_large_v3_wer_20000-99999999.json"]
output_file = "gigaspeech_prompt_xs_large_v3_wer.json"
final_output = []
for file in files:
with open(file) as f:
data = json.load(f)
final_output.extend(data)
with open(output_file, "w") as f:
json.dump(final_output, f)