summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTuowen Zhao <ztuowen@gmail.com>2021-03-12 18:29:04 -0700
committerTuowen Zhao <ztuowen@gmail.com>2021-03-12 18:29:04 -0700
commit973e01ef3446263bbd000bb2f6e820424257b205 (patch)
tree80b3486bc16899641a3dcae031aea7daf883cabb
parentbe4bd00c998fc0c103aaaf682d85c71a2073ce71 (diff)
downloadlpl-973e01ef3446263bbd000bb2f6e820424257b205.tar.gz
lpl-973e01ef3446263bbd000bb2f6e820424257b205.tar.bz2
lpl-973e01ef3446263bbd000bb2f6e820424257b205.zip
print function names
-rw-r--r--rank.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rank.py b/rank.py
index 26cbaee..3e538a9 100644
--- a/rank.py
+++ b/rank.py
@@ -259,7 +259,7 @@ for i in range(1000):
for k in range(K):
means[k] = tot[k] / cnt[k]
-print("Result of k-means")
+print("Result of team ranking using", smooth_func.__name__, score_func.__name__)
for idx, m in enumerate(means):
print("\t", rank_name[idx], m)