CoolFace
Datasetpublic

JudSacr/mqa

MQA is a multilingual corpus of questions and answers parsed from the Common Crawl. Questions are divided between Frequently Asked Questions (FAQ) pages and Community Question Answering (CQA) pages.

sourceHugging Facecc0-1.0updated 4mo agoView on Hugging Face
0likes35downloads
test.py7 linesDownload Raw Back to root
1import datasets2import tqdm3 4dataset = datasets.load_dataset("mqa.py", language="ca", scope="faq", level="domain", download_mode=datasets.GenerateMode.FORCE_REDOWNLOAD)5for row in tqdm.tqdm(dataset["train"]):6    pass7