Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
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 |
-
|
58 |
-
|
59 |
-
|
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 |
|