HomeSort by relevance Sort by last modified time
    Searched refs:ScoreSample (Results 1 - 6 of 6) sorted by null

  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
ILearning_StochasticLinearRanker.aidl 30 float ScoreSample(in List<StringFloat> sample);
BordeauxRanker.java 32 * For ranking: call scoreSample to the score of the rank
107 public float scoreSample(final HashMap<String, Float> sample) {
111 return mRanker.ScoreSample(getArrayList(sample));
Learning_StochasticLinearRanker.java 75 public float ScoreSample(List<StringFloat> sample) {
85 return mLearningSlRanker.scoreSample(keys,values);
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
stochastic_linear_ranker.cpp 70 const double positive_score = ScoreSample(positive);
71 const double negative_score = ScoreSample(negative);
87 const double current_negative_score = ScoreSample(current_negative_);
stochastic_linear_ranker.h 176 double ScoreSample(const SparseWeightVector<Key, Hash> &sample) {
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/jni/
jni_stochastic_linear_ranker.cpp 458 return classifier->ScoreSample(sample);

Completed in 179 milliseconds