sh1gechan commited on
Commit
0746ffd
·
verified ·
1 Parent(s): 7120d92

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -54,9 +54,9 @@ except Exception:
54
 
55
  print(f"Files in 'llm-jp-13b-v2.0': {os.listdir(os.path.join(EVAL_RESULTS_PATH, 'llm-jp-13b-v2.0'))}")
56
  eval_result_file = os.path.join(EVAL_RESULTS_PATH, 'llm-jp-13b-v2.0', 'llm-jp--llm-jp-13b-v2.0_vllm_20240908_170440.json') # 実際のファイル名を確認してパスを修正
57
- # with open(eval_result_file, 'r') as file:
58
- # result_data = json.load(file)
59
- # print(f"Evaluation result file content: {result_data}")
60
 
61
 
62
 
 
54
 
55
  print(f"Files in 'llm-jp-13b-v2.0': {os.listdir(os.path.join(EVAL_RESULTS_PATH, 'llm-jp-13b-v2.0'))}")
56
  eval_result_file = os.path.join(EVAL_RESULTS_PATH, 'llm-jp-13b-v2.0', 'llm-jp--llm-jp-13b-v2.0_vllm_20240908_170440.json') # 実際のファイル名を確認してパスを修正
57
+ with open(eval_result_file, 'r') as file:
58
+ result_data = json.load(file)
59
+ print(f"Evaluation result file content: {result_data}")
60
 
61
 
62