CC-100 (mr) dataset for language nlp.
from datasets import load_dataset
ds = load_dataset('cc100', 'mr', split='train', streaming=True)
for i, ex in enumerate(ds):
print(f"Text: {ex['text'][:100]}...")
if i >= 4: break| Field | Type | Description |
|---|---|---|
| text | string | Marathi text from web crawl (Common Crawl) |