File size: 705 Bytes
d195d4f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
import json
class Tools:
@staticmethod
def load_jsonl(file_path):
json_objects = []
with open(file_path, 'r', encoding='utf8') as f:
for line in f:
json_objects.append(json.loads(line.strip()))
return json_objects
@staticmethod
def load_tasks(task_path):
result = dict()
lines = Tools.load_jsonl(task_path)
for line in lines:
result[line['task_id']] = line
return result
@staticmethod
def write_file(path, content):
with open(path, 'w', encoding='utf8') as f:
f.write(content) |