Skip to content

Commit 956ad33

Browse files
committed
accuracy issues targeted
1 parent d6eda81 commit 956ad33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graph_net/analysis_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,6 @@ def get_incorrect_models(tolerance, log_file_path) -> list:
638638
datalist = parse_logs_to_data(log_file_path)
639639
for i in datalist:
640640
iscorrect, err = check_sample_correctness(i, tolerance)
641-
if not iscorrect:
641+
if not iscorrect and err == "accuracy":
642642
failed_models.append(i.get("model_path"))
643643
return failed_models

0 commit comments

Comments
 (0)