Skip to content

Commit

Permalink
iter
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Büscher committed Jul 10, 2018
1 parent 5402c0e commit 4e8101b
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,14 @@ public ExpectedReciprocalRank(int maxRelevance) {
}

/**
* @param maxRelevance the maximal relevance judgment in the evaluation dataset
* @param maxRelevance
* the maximal relevance judgment in the evaluation dataset
* @param unknownDocRating
* the rating for documents the user hasn't supplied an explicit
* rating for. Can be <tt>null</tt>, in which case document will be skipped.
* @param k the search window size all request use.
* rating for. Can be {@code null}, in which case document is
* skipped.
* @param k
* the search window size all request use.
*/
public ExpectedReciprocalRank(int maxRelevance, @Nullable Integer unknownDocRating, int k) {
this.maxRelevance = maxRelevance;
Expand Down

0 comments on commit 4e8101b

Please sign in to comment.