diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2021-03-12 18:29:04 -0700 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2021-03-12 18:29:04 -0700 |
commit | 973e01ef3446263bbd000bb2f6e820424257b205 (patch) | |
tree | 80b3486bc16899641a3dcae031aea7daf883cabb /rank.py | |
parent | be4bd00c998fc0c103aaaf682d85c71a2073ce71 (diff) | |
download | lpl-973e01ef3446263bbd000bb2f6e820424257b205.tar.gz lpl-973e01ef3446263bbd000bb2f6e820424257b205.tar.bz2 lpl-973e01ef3446263bbd000bb2f6e820424257b205.zip |
print function names
Diffstat (limited to 'rank.py')
-rw-r--r-- | rank.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |