Skip to content

Commit

Permalink
fixing score
Browse files Browse the repository at this point in the history
  • Loading branch information
ACEnglish committed Jul 19, 2023
1 parent a8f2254 commit 72a6d16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utmos/select.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def do_sum(matrix, sample_mask):
m_score += row
m_count += (row != 0).astype('int')
# mask out excluded/used samples
m_count[sample_mask != 1] = 0
m_score[sample_mask != 1] = 0
return m_score, m_count


Expand Down

0 comments on commit 72a6d16

Please sign in to comment.