Searched defs:scoreSample (Results 1 - 3 of 3) sorted by relevance

/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBordeauxRanker.java32 * For ranking: call scoreSample to the score of the rank
107 public float scoreSample(final HashMap<String, Float> sample) { method in class:BordeauxRanker
H A DStochasticLinearRankerWithPrior.java88 public float scoreSample(String[] keys, float[] values) { method in class:StochasticLinearRankerWithPrior
90 return super.scoreSample(keys, values);
94 return (1 - mAutoAlpha) * super.scoreSample(keys,values) +
99 return (1 - mAlpha) * super.scoreSample(keys,values) +
129 float positiveUserScore = super.scoreSample(keys_positive, values_positive);
130 float negativeUserScore = super.scoreSample(keys_negative, values_negative);
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/java/android/bordeaux/learning/
H A DStochasticLinearRanker.java35 * To get the rank score of the sample call scoreSample.
79 public float scoreSample(String[] keys, float[] values) { method in class:StochasticLinearRanker

Completed in 128 milliseconds