Interface MultiTargetVector

interface MultiTargetVector {
    average: ((targetVectors) => MultiTargetVectorJoin);
    manualWeights: ((weights) => MultiTargetVectorJoin);
    minimum: ((targetVectors) => MultiTargetVectorJoin);
    relativeScore: ((weights) => MultiTargetVectorJoin);
    sum: ((targetVectors) => MultiTargetVectorJoin);
}

Properties

average: ((targetVectors) => MultiTargetVectorJoin)

Create a multi-target vector join that averages the vector scores over the target vectors

Type declaration

manualWeights: ((weights) => MultiTargetVectorJoin)

Create a multi-target vector join that uses manual weights for each target vector

Type declaration

minimum: ((targetVectors) => MultiTargetVectorJoin)

Create a multi-target vector join that takes the minimum vector score over the target vectors

Type declaration

relativeScore: ((weights) => MultiTargetVectorJoin)

Create a multi-target vector join that uses relative weights for each target vector

Type declaration

sum: ((targetVectors) => MultiTargetVectorJoin)

Create a multi-target vector join that sums the vector scores over the target vectors

Type declaration