Signed-off-by: Pr0Wh1teGivee <calvin_zhu0210@outlook.com>
Signed-off-by: weichen <calvin_zhu0210@outlook.com>
This commit is contained in:
Pr0Wh1teGivee 2025-12-03 17:01:51 +08:00 committed by weichen
parent 1e8b313afb
commit b04f678659

View File

@ -32,7 +32,11 @@ class NormalizedScorer:
def __init__(self, dim_list: list[ScoreDim]) -> None:
"""
:param dim_list: Scoring dimensions; each dimension must define a median reference point, scaling factor, and weight.
Initialize the scorer with a list of scoring dimensions.
Args:
dim_list: A list of `ScoreDim` objects. Each dimension must define a
median reference point, scaling factor, and weight.
"""
self.dim_list = dim_list
self.dim_count = len(dim_list)