Enum ScoreFusionNormalization
Specifies how raw scores from each input pipeline of a $scoreFusion stage are normalized before combination.
public enum ScoreFusionNormalization
Fields
None = 0Use the raw input scores without normalization.
Sigmoid = 1Apply the sigmoid function to map each score to a value in (0, 1).
MinMaxScaler = 2Rescale each score linearly to the range [0, 1] based on the minimum and maximum scores in the result set.