Skip to content

Commit

Permalink
Fix quality score calculations
Browse files Browse the repository at this point in the history
  • Loading branch information
F33RNI committed Apr 7, 2023
1 parent b05b1ef commit a37146d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion AudioHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,6 @@ def compute_final_score(self):

# Invert range and clamp
thd_score = 100 - clamp(thd_score, 0, 100)
print(thd_score)

total_score[channel_n] = total_score[channel_n] + thd_score
total_score[channel_n] = np.divide(total_score[channel_n], 2)
Expand Down

0 comments on commit a37146d

Please sign in to comment.