Skip to content

Commit 159cc52

Browse files
committed
Update overall algorithm to 0.70
1 parent bd3dc69 commit 159cc52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,6 @@ def find_skillset_rating(values):
138138
# are the skillset ratings.
139139
def find_ratings(skillsets_values):
140140
ratings = [find_skillset_rating(np.array(values)) for values in skillsets_values]
141-
overall = (sum(ratings) - min(ratings)) / 6
141+
overall = sum(ratings) / 7
142142
ratings.insert(0, overall)
143143
return ratings

0 commit comments

Comments
 (0)