ir_datasets
: C4A version of Google's C4 dataset, which consists of articles crawled form the web.
The "en-noclean" train subset of the corpus, consisting of ~1B documents written in English. Document IDs are assigned as proposed by the TREC Health Misinformation 2021 track.
Language: en
Examples:
import ir_datasets
dataset = ir_datasets.load("c4/en-noclean-tr")
for doc in dataset.docs_iter():
doc # namedtuple<doc_id, text, url, timestamp>
You can find more details about the Python API here.
The TREC Health Misinformation 2021 track.
Language: en
Examples:
import ir_datasets
dataset = ir_datasets.load("c4/en-noclean-tr/trec-misinfo-2021")
for query in dataset.queries_iter():
query # namedtuple<query_id, text, description, narrative, disclaimer, stance, evidence>
You can find more details about the Python API here.