Terry Zhuo commited on
Commit
c9c684c
·
1 Parent(s): 7f77e31
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -152,9 +152,14 @@ with gr.Blocks() as demo:
152
  extra = subset + "_" if subset != "full" else ""
153
  if jsonl_file is not None:
154
  result_path = os.path.basename(jsonl_file.name).replace(".jsonl", f"_{extra}eval_results.json")
 
 
155
 
156
  for log in stream_logs(command, jsonl_file):
157
- yield log, gr.update(value=result_path, label=result_path), gr.update()
 
 
 
158
  is_running = False
159
  result_file = find_result_file()
160
  if result_file:
 
152
  extra = subset + "_" if subset != "full" else ""
153
  if jsonl_file is not None:
154
  result_path = os.path.basename(jsonl_file.name).replace(".jsonl", f"_{extra}eval_results.json")
155
+ else:
156
+ result_path = None
157
 
158
  for log in stream_logs(command, jsonl_file):
159
+ if jsonl_file is not None:
160
+ yield log, gr.update(value=result_path, label=result_path), gr.update()
161
+ else:
162
+ yield log, gr.update(), gr.update()
163
  is_running = False
164
  result_file = find_result_file()
165
  if result_file: