ir_datasets
: TREC MandarinTo use this dataset, you need a copy of the source corpus, provided by the the Linguistic Data Consortium. The specific resource needed is LDC2000T52.
Many organizations already have a subscription to the LDC, so access to the collection can be as easy as confirming the data usage agreement and downloading the corpus. Check with your library for access details.
The source file is: LDC2000T52.tgz.
ir_datasets expects this file to be copied/linked as ~/.ir_datasets/trec-mandarin/corpus.tgz.
A collection of news articles in Mandarin in Simplified Chinese, used for multi-lingual evaluation in TREC 5 and TREC 6.
Document collection from LDC2000T52.
Language: zh
Examples:
import ir_datasets
dataset = ir_datasets.load("trec-mandarin")
for doc in dataset.docs_iter():
doc # namedtuple<doc_id, text, marked_up_doc>
You can find more details about the Python API here.
ir_datasets export trec-mandarin docs
[doc_id] [text] [marked_up_doc]
...
You can find more details about the CLI here.
No example available for PyTerrier
Mandarin Chinese benchmark from TREC 5.
Language: multiple/other/unknown
Examples:
import ir_datasets
dataset = ir_datasets.load("trec-mandarin/trec5")
for query in dataset.queries_iter():
query # namedtuple<query_id, title_en, title_zh, description_en, description_zh, narrative_en, narrative_zh>
You can find more details about the Python API here.
ir_datasets export trec-mandarin/trec5 queries
[query_id] [title_en] [title_zh] [description_en] [description_zh] [narrative_en] [narrative_zh]
...
You can find more details about the CLI here.
No example available for PyTerrier
Language: zh
Note: Uses docs from trec-mandarin
Examples:
import ir_datasets
dataset = ir_datasets.load("trec-mandarin/trec5")
for doc in dataset.docs_iter():
doc # namedtuple<doc_id, text, marked_up_doc>
You can find more details about the Python API here.
ir_datasets export trec-mandarin/trec5 docs
[doc_id] [text] [marked_up_doc]
...
You can find more details about the CLI here.
No example available for PyTerrier
Relevance levels
Rel. | Definition |
---|---|
0 | not relevant |
1 | relevant |
Examples:
import ir_datasets
dataset = ir_datasets.load("trec-mandarin/trec5")
for qrel in dataset.qrels_iter():
qrel # namedtuple<query_id, doc_id, relevance, iteration>
You can find more details about the Python API here.
ir_datasets export trec-mandarin/trec5 qrels --format tsv
[query_id] [doc_id] [relevance] [iteration]
...
You can find more details about the CLI here.
No example available for PyTerrier
Mandarin Chinese benchmark from TREC 6.
Language: multiple/other/unknown
Examples:
import ir_datasets
dataset = ir_datasets.load("trec-mandarin/trec6")
for query in dataset.queries_iter():
query # namedtuple<query_id, title_en, title_zh, description_en, description_zh, narrative_en, narrative_zh>
You can find more details about the Python API here.
ir_datasets export trec-mandarin/trec6 queries
[query_id] [title_en] [title_zh] [description_en] [description_zh] [narrative_en] [narrative_zh]
...
You can find more details about the CLI here.
No example available for PyTerrier
Language: zh
Note: Uses docs from trec-mandarin
Examples:
import ir_datasets
dataset = ir_datasets.load("trec-mandarin/trec6")
for doc in dataset.docs_iter():
doc # namedtuple<doc_id, text, marked_up_doc>
You can find more details about the Python API here.
ir_datasets export trec-mandarin/trec6 docs
[doc_id] [text] [marked_up_doc]
...
You can find more details about the CLI here.
No example available for PyTerrier
Relevance levels
Rel. | Definition |
---|---|
0 | not relevant |
1 | relevant |
Examples:
import ir_datasets
dataset = ir_datasets.load("trec-mandarin/trec6")
for qrel in dataset.qrels_iter():
qrel # namedtuple<query_id, doc_id, relevance, iteration>
You can find more details about the Python API here.
ir_datasets export trec-mandarin/trec6 qrels --format tsv
[query_id] [doc_id] [relevance] [iteration]
...
You can find more details about the CLI here.
No example available for PyTerrier