CandidatePair

data class CandidatePair(val anchor: Proposition, val member: Proposition, val proposalScore: Double? = null)

One proposed pair of propositions worth scoring.

Constructors

Link copied to clipboard
constructor(anchor: Proposition, member: Proposition, proposalScore: Double? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val proposalScore: Double? = null

An optional score the pair source already computed when proposing this pair (e.g. vector cosine); a matching scorer may reuse it instead of recomputing. Null when the source has no score to offer.