Spaces:
Runtime error
Runtime error
File size: 243 Bytes
3992084 |
1 2 3 4 5 6 7 8 9 |
from datasets import load_dataset
faq_hu = load_dataset("clips/mqa", scope="faq", language="hu")
cqa_hu = load_dataset("clips/mqa", scope="cqa", language="hu")
print(faq_hu)
print(cqa_hu)
print(faq_hu['train'][:5])
print(cqa_hu['train'][:5]) |