Skip to content

Commit

Permalink
Update overall algorithm to 0.70
Browse files Browse the repository at this point in the history
  • Loading branch information
kangalio committed Oct 31, 2020
1 parent bd3dc69 commit 159cc52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,6 @@ def find_skillset_rating(values):
# are the skillset ratings.
def find_ratings(skillsets_values):
ratings = [find_skillset_rating(np.array(values)) for values in skillsets_values]
overall = (sum(ratings) - min(ratings)) / 6
overall = sum(ratings) / 7
ratings.insert(0, overall)
return ratings

0 comments on commit 159cc52

Please sign in to comment.