Skip to content

Commit

Permalink
Update script.js
Browse files Browse the repository at this point in the history
  • Loading branch information
AltmannPeter authored Jul 28, 2023
1 parent 2629c96 commit b45ec09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ function updateTable() {
const compressedSizeCell = document.createElement("td");
const asrCell = document.createElement("td");

biasCell.textContent = data.bias.toFixed(2) + "%";
entropyCell.textContent = data.entropy.toFixed(4);
biasCell.textContent = data.bias.toFixed(1) + "%";
entropyCell.textContent = data.entropy.toLocaleString();
compressedSizeCell.textContent = data.compressedSize.toLocaleString();
asrCell.textContent = data.asr.toFixed(2);
asrCell.textContent = data.asr.toLocaleString();

row.appendChild(biasCell);
row.appendChild(entropyCell);
Expand Down

0 comments on commit b45ec09

Please sign in to comment.