Table of Contents

Enum ScoreFusionNormalization

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Specifies how raw scores from each input pipeline of a $scoreFusion stage are normalized before combination.

public enum ScoreFusionNormalization

Fields

None = 0

Use the raw input scores without normalization.

Sigmoid = 1

Apply the sigmoid function to map each score to a value in (0, 1).

MinMaxScaler = 2

Rescale each score linearly to the range [0, 1] based on the minimum and maximum scores in the result set.