Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typo 2CR docs #1225

Merged
merged 1 commit into from
Jun 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/2cr/msmarco-v1-doc.html
Original file line number Diff line number Diff line change
Expand Up @@ -668,11 +668,11 @@ <h1 class="mb-3">MS MARCO V1 Document</h1>

</div></td>
</tr>
<!-- Condition: BM25+RM3 doc segmented (<i>k<sub><small>1</small></sub></i>=0.9, <i>b</i>=0.4) -->
<!-- Condition: BM25+Rocchio doc segmented (<i>k<sub><small>1</small></sub></i>=0.9, <i>b</i>=0.4) -->
<tr class="accordion-toggle collapsed" id="row6" data-toggle="collapse" data-parent="#row6" href="#collapse6">
<td class="expand-button"></td>
<td style="min-width: 85px"></td>
<td style="min-width: 400px">BM25+RM3 doc segmented (<i>k<sub><small>1</small></sub></i>=0.9, <i>b</i>=0.4)</td>
<td style="min-width: 400px">BM25+Rocchio doc segmented (<i>k<sub><small>1</small></sub></i>=0.9, <i>b</i>=0.4)</td>
<td>0.2889</td>
<td>0.5570</td>
<td>0.7423</td>
Expand Down Expand Up @@ -1275,11 +1275,11 @@ <h1 class="mb-3">MS MARCO V1 Document</h1>

</div></td>
</tr>
<!-- Condition: BM25+RM3 doc segmented (<i>k<sub><small>1</small></sub></i>=2.16, <i>b</i>=0.61) -->
<!-- Condition: BM25+Rocchio doc segmented (<i>k<sub><small>1</small></sub></i>=2.16, <i>b</i>=0.61) -->
<tr class="accordion-toggle collapsed" id="row12" data-toggle="collapse" data-parent="#row12" href="#collapse12">
<td class="expand-button"></td>
<td style="min-width: 85px"></td>
<td style="min-width: 400px">BM25+RM3 doc segmented (<i>k<sub><small>1</small></sub></i>=2.16, <i>b</i>=0.61)</td>
<td style="min-width: 400px">BM25+Rocchio doc segmented (<i>k<sub><small>1</small></sub></i>=2.16, <i>b</i>=0.61)</td>
<td>0.2677</td>
<td>0.5424</td>
<td>0.7115</td>
Expand Down
8 changes: 4 additions & 4 deletions pyserini/resources/msmarco-v1-doc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@ conditions:
nDCG@10: 0.5192
R@1K: 0.8273
- name: bm25-rocchio-doc-segmented-tuned
display: BM25+RM3 doc segmented (k1=2.16, b=0.61)
display-html: BM25+RM3 doc segmented (<i>k<sub><small>1</small></sub></i>=2.16, <i>b</i>=0.61)
display: BM25+Rocchio doc segmented (k1=2.16, b=0.61)
display-html: BM25+Rocchio doc segmented (<i>k<sub><small>1</small></sub></i>=2.16, <i>b</i>=0.61)
command: python -m pyserini.search.lucene --topics $topics --index msmarco-v1-doc-segmented-full --output $output --bm25 --rocchio --hits 10000 --max-passage-hits 1000 --max-passage
topics:
- topic_key: msmarco-doc-dev
Expand All @@ -246,8 +246,8 @@ conditions:
nDCG@10: 0.4997
R@1K: 0.8042
- name: bm25-rocchio-doc-segmented-default
display: BM25+RM3 doc segmented (k1=0.9, b=0.4)
display-html: BM25+RM3 doc segmented (<i>k<sub><small>1</small></sub></i>=0.9, <i>b</i>=0.4)
display: BM25+Rocchio doc segmented (k1=0.9, b=0.4)
display-html: BM25+Rocchio doc segmented (<i>k<sub><small>1</small></sub></i>=0.9, <i>b</i>=0.4)
command: python -m pyserini.search.lucene --topics $topics --index msmarco-v1-doc-segmented-full --output $output --bm25 --rocchio --k1 0.9 --b 0.4 --hits 10000 --max-passage-hits 1000 --max-passage
topics:
- topic_key: msmarco-doc-dev
Expand Down