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