MCPcopy Create free account
hub / github.com/Depth2World/VLADBench / load_json_data

Function load_json_data

evaluate_utils.py:93–96  ·  view source on GitHub ↗
(path)

Source from the content-addressed store, hash-verified

91
92
93def load_json_data(path):
94 with open(path,'r',encoding='utf-8') as json_f:
95 task_data = json.load(json_f)
96 return task_data
97
98def save_json_data(path,data):
99 with open(path,'w',encoding='utf-8') as json_f:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected