Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion FlagEmbedding/abc/evaluation/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ def evaluate_metrics(
if os.path.exists(eval_results_path):
eval_results = json.load(open(eval_results_path, encoding='utf-8'))
else:
raise FileNotFoundError(f"Eval results not found: {eval_results_path}")
logger.warning(f"Eval results not found: {eval_results_path}")
continue

if model_name not in eval_results_dict:
eval_results_dict[model_name] = {}
Expand Down
Loading