Marathi translation of the Stanford Alpaca instruction-tuning dataset for fine-tuning instruction-following capabilities in Marathi language models
from datasets import load_dataset
ds = load_dataset('ravithejads/marathi-alpaca')
for ex in ds['train'][:5]:
print(f"Instruction: {ex['instruction'][:60]}...")
print(f"Output: {ex['output'][:60]}...\n")| Field | Type | Description |
|---|---|---|
| instruction | string | Task instruction in Marathi |
| input | string | Optional input context for the task |
| output | string | Expected response in Marathi |