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
5 changes: 3 additions & 2 deletions fluster/fluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -701,10 +701,11 @@ def _profile_stats(
}

if vectors_passed_per_profile_per_decoder:
output = separator
output += "\n|Profile|"
output = "|Profile|"
for decoder, _ in results:
output += f"{decoder.name}|"
output += "\n"
output += separator

for profile in vectors_passed_per_profile_per_decoder.keys():
for decoder, _ in results:
Expand Down