Recommend
data class Recommend(val positive: List<VectorInput> = emptyList(), val negative: List<VectorInput> = emptyList(), val strategy: RecommendStrategy? = null) : QueryInterface
Recommend points close to the positive examples and far from the negative ones.
Constructors
Link copied to clipboard
constructor(positive: List<VectorInput> = emptyList(), negative: List<VectorInput> = emptyList(), strategy: RecommendStrategy? = null)