We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b9a703 commit ffadc9eCopy full SHA for ffadc9e
1 file changed
src/main.py
@@ -42,7 +42,7 @@ def _run(pure: bool):
42
def _eval(pure: bool):
43
split = "pure" if pure else "base"
44
print(f"Running {model} on TF-Bench ({split}):")
45
- match _run(pure=False):
+ match _run(pure=pure):
46
case Success((mean, std)):
47
print(f"Accuracy: {mean:.4f} ± {std:.4f}")
48
print("====================================")
0 commit comments