(path,data)
| 96 | return task_data |
| 97 | |
| 98 | def save_json_data(path,data): |
| 99 | with open(path,'w',encoding='utf-8') as json_f: |
| 100 | json.dump(data,json_f,ensure_ascii=False,indent=4) |
| 101 | |
| 102 | def Geneal_criterion_QA(third_task_data,MODEL=None): |
| 103 | ques_total_num = 0 |
nothing calls this directly
no outgoing calls
no test coverage detected