mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 14:55:00 +00:00
feat: Print never solved exercises and remove dumps
This commit is contained in:
parent
dddf192e5a
commit
6185ddf76a
1 changed files with 1 additions and 3 deletions
|
@ -181,6 +181,7 @@ def analyze_exercise_solutions(dirs=None, topn=None, copy_hard_set=False):
|
|||
)
|
||||
|
||||
print(f"Total exercises solved at least once: {solved_at_least_once}")
|
||||
# print out these never solved use lang/exercises/practice/ex ai!
|
||||
print(f"Never solved by any model: {solved_by_none}")
|
||||
if solved_by_none > 0:
|
||||
print("\nExercises never solved by any model:")
|
||||
|
@ -235,9 +236,6 @@ def analyze_exercise_solutions(dirs=None, topn=None, copy_hard_set=False):
|
|||
}
|
||||
print(f"Total hard set exercises: {len(hard_set)}")
|
||||
|
||||
dump(disqualified_exercises)
|
||||
dump(hard_set)
|
||||
|
||||
# Count total problems, unsolved problems, and hard set problems by language
|
||||
lang_totals = defaultdict(int)
|
||||
lang_unsolved = defaultdict(int)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue