-
Notifications
You must be signed in to change notification settings - Fork 189
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
Add relevance metrics including pruned tokens to MS Marco ranking track #525
Changes from all commits
09a3031
ac79e54
c554c6b
1ebea6c
d044ee2
7e6f151
ef4d8ed
e3e819a
99b25c4
3ffe4ef
961f79a
5e852b2
87a073a
7e750de
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
pytrec_eval | ||
numpy | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file was auto-formatted for correct json indentation. I have left comments starting at the two places where I made changes. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,152 @@ | ||
{ | ||
"name": "text-expansion-search-maxwand-disabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "text_expansion", | ||
"text_expansion_field": "text_expansion_elser", | ||
"track_total_hits": true | ||
}, | ||
{ | ||
"name": "text-expansion-search-maxwand-enabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "text_expansion", | ||
"text_expansion_field": "text_expansion_elser", | ||
"track_total_hits": false | ||
}, | ||
{ | ||
"name": "text-expansion-splade-search-maxwand-disabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "text_expansion", | ||
"text_expansion_field": "text_expansion_splade", | ||
"track_total_hits": true | ||
}, | ||
{ | ||
"name": "text-expansion-splade-search-maxwand-enabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "text_expansion", | ||
"text_expansion_field": "text_expansion_splade", | ||
"track_total_hits": false | ||
}, | ||
{ | ||
"name": "bm25-search-maxwand-disabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "bm25", | ||
"track_total_hits": true | ||
}, | ||
{ | ||
"name": "bm25-search-maxwand-enabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "bm25", | ||
"track_total_hits": false | ||
}, | ||
{ | ||
"name": "hybrid-search-maxwand-disabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "hybrid", | ||
"text_expansion_field": "text_expansion_elser", | ||
"track_total_hits": true | ||
}, | ||
{ | ||
"name": "hybrid-search-maxwand-enabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "hybrid", | ||
"text_expansion_field": "text_expansion_elser", | ||
"track_total_hits": false | ||
} | ||
{ | ||
"name": "text-expansion-search-maxwand-disabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "text_expansion", | ||
"text_expansion_field": "text_expansion_elser", | ||
"track_total_hits": true | ||
}, | ||
{ | ||
"name": "text-expansion-search-maxwand-enabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "text_expansion", | ||
"text_expansion_field": "text_expansion_elser", | ||
"track_total_hits": false | ||
}, | ||
{ | ||
"name": "text-expansion-splade-search-maxwand-disabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "text_expansion", | ||
"text_expansion_field": "text_expansion_splade", | ||
"track_total_hits": true | ||
}, | ||
{ | ||
"name": "text-expansion-splade-search-maxwand-enabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "text_expansion", | ||
"text_expansion_field": "text_expansion_splade", | ||
"track_total_hits": false | ||
}, | ||
{ | ||
"name": "pruned-text-expansion-search-maxwand-disabled", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added operations here |
||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "text_expansion", | ||
"track_total_hits": true, | ||
"prune": true | ||
}, | ||
{ | ||
"name": "pruned-text-expansion-search-maxwand-enabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "text_expansion", | ||
"track_total_hits": false, | ||
"prune": true | ||
}, | ||
{ | ||
"name": "pruned-rescored-text-expansion-search-maxwand-disabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "text_expansion", | ||
"track_total_hits": true, | ||
"prune": true, | ||
"rescore": true | ||
}, | ||
{ | ||
"name": "pruned-rescored-text-expansion-search-maxwand-enabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "text_expansion", | ||
"track_total_hits": false, | ||
"prune": true, | ||
"rescore": true | ||
}, | ||
{ | ||
"name": "bm25-search-maxwand-disabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "bm25", | ||
"track_total_hits": true | ||
}, | ||
{ | ||
"name": "bm25-search-maxwand-enabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "bm25", | ||
"track_total_hits": false | ||
}, | ||
{ | ||
"name": "hybrid-search-maxwand-disabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "hybrid", | ||
"text_expansion_field": "text_expansion_elser", | ||
"track_total_hits": true | ||
}, | ||
{ | ||
"name": "hybrid-search-maxwand-enabled", | ||
"operation-type": "search", | ||
"param-source": "query_param_source", | ||
"query_source": "queries.json", | ||
"query_strategy": "hybrid", | ||
"text_expansion_field": "text_expansion_elser", | ||
"track_total_hits": false | ||
}, | ||
{ | ||
"name": "pruned-weighted-terms-recall-10-10", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added operations here |
||
"operation-type": "weighted_terms_recall", | ||
"param-source": "weighted_terms_recall_param_source", | ||
"top_k": 10, | ||
"num_candidates": 10, | ||
"query_source": "queries-small.json", | ||
"qrels_source": "qrels-small.tsv", | ||
"text_expansion_field": "text_expansion_elser", | ||
"include-in-reporting": true | ||
}, | ||
{ | ||
"name": "pruned-weighted-terms-recall-10-100", | ||
"operation-type": "weighted_terms_recall", | ||
"param-source": "weighted_terms_recall_param_source", | ||
"top_k": 10, | ||
"num_candidates": 100, | ||
"query_source": "queries-small.json", | ||
"qrels_source": "qrels-small.tsv", | ||
"text_expansion_field": "text_expansion_elser", | ||
"include-in-reporting": true | ||
}, | ||
{ | ||
"name": "pruned-weighted-terms-recall-100-100", | ||
"operation-type": "weighted_terms_recall", | ||
"param-source": "weighted_terms_recall_param_source", | ||
"top_k": 100, | ||
"num_candidates": 100, | ||
"query_source": "queries-small.json", | ||
"qrels_source": "qrels-small.tsv", | ||
"text_expansion_field": "text_expansion_elser", | ||
"include-in-reporting": true | ||
}, | ||
{ | ||
"name": "pruned-weighted-terms-recall-100-1000", | ||
"operation-type": "weighted_terms_recall", | ||
"param-source": "weighted_terms_recall_param_source", | ||
"top_k": 100, | ||
"num_candidates": 1000, | ||
"query_source": "queries-small.json", | ||
"qrels_source": "qrels-small.tsv", | ||
"text_expansion_field": "text_expansion_elser", | ||
"include-in-reporting": true | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should the presence of this file be mentioned in README? Also, please align version pinning with
dependencies
section.