This commit is contained in:
sunbiz1024
2025-10-06 09:38:16 +08:00
parent 28afc09d31
commit 8f4f7d19af
66 changed files with 487 additions and 497 deletions

View File

@@ -19,10 +19,10 @@ def dyn_select_top_k(
for score_item in sorted_score:
normalized_score.append(
(
score_item[0],
score_item[1],
(score_item[1] - min_score) / (max_score - min_score),
)
score_item[0],
score_item[1],
(score_item[1] - min_score) / (max_score - min_score),
)
)
# 寻找跳变点score变化最大的位置