Home | History | Annotate | Download | only in recommendation

Lines Matching defs:score

123         // recommendChannels must be sorted by score in decreasing order.
143 // recommendChannels must be sorted by score in decreasing order.
252 // Add a log to recalculate the recommendation score.
261 // by setting score to each channel.
332 double score = Math.pow(0.5, channelIdList.size());
334 // Channel with smaller id has smaller score than channel with higher id.
335 mEvaluator.setChannelScore(channelId, score);
336 score *= 2.0;
348 Double score = mChannelScore.get(channelId);
349 return score == null ? NOT_RECOMMENDED : score;
352 public void setChannelScore(long channelId, double score) {
353 mChannelScore.put(channelId, score);