Skip to content

Commit

Permalink
Fix compare learners
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul committed Jan 2, 2024
1 parent b4f0a39 commit 00d341b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compare-learners.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ print_stat() {
if [ $n -gt 0 ]; then
avg=$((sum/n))
std=$(std_dev "${vals[@]}" | sed "s/,/\./")
printf "%5d, %6.2f, " $avg $std
LC_NUMERIC=C printf "%5d, %6.2f, " $avg $std
else
printf ", , "
fi
Expand Down

0 comments on commit 00d341b

Please sign in to comment.