mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-19 12:57:58 +00:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
2a7dd49328
commit
79a55ff186
1 changed files with 1 additions and 3 deletions
|
|
@ -766,9 +766,7 @@ class IFEvalEnv(BaseEnv):
|
|||
# Print reasoning source breakdown if thinking mode is enabled
|
||||
if self.config.thinking_mode and reasoning_sources:
|
||||
print("\nReasoning Source Breakdown:")
|
||||
for source, count in sorted(
|
||||
reasoning_sources.items(), key=lambda x: -x[1]
|
||||
):
|
||||
for source, count in sorted(reasoning_sources.items(), key=lambda x: -x[1]):
|
||||
pct = (count / total_count) * 100 if total_count > 0 else 0
|
||||
print(f" {source}: {count} ({pct:.1f}%)")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue