mirror of https://github.com/apache/lucene.git
fix javadocs bugs in scoring formula
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1425702 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
471c1149e7
commit
3a6c519be1
|
@ -24,8 +24,8 @@ import org.apache.lucene.search.TermStatistics;
|
||||||
* Used for ranking passages.
|
* Used for ranking passages.
|
||||||
* <p>
|
* <p>
|
||||||
* Each passage is scored as a miniature document within the document.
|
* Each passage is scored as a miniature document within the document.
|
||||||
* The final score is computed as {@link #norm} * {@link #weight} * ∑ {@link #tf}.
|
* The final score is computed as {@link #norm} * ∑ ({@link #weight} * {@link #tf}).
|
||||||
* The default implementation is BM25 * {@link #norm}.
|
* The default implementation is {@link #norm} * BM25.
|
||||||
* @lucene.experimental
|
* @lucene.experimental
|
||||||
*/
|
*/
|
||||||
public class PassageScorer {
|
public class PassageScorer {
|
||||||
|
|
Loading…
Reference in New Issue