| --- |
| license: mit |
| --- |
| --- |
| DataSet Created By N V R K SAI KAMESH YADAVALLI |
| --- |
| dataset_info: |
| features: |
| - name: page_number |
| dtype: int |
| - name: content |
| dtype: string |
| splits: |
| - name: train |
| num_examples: 10000 |
| --- |
| |
| # ๐ Rigveda English Translation Dataset |
| This dataset contains **English translations of the Rigveda**, formatted with page numbers. |
|
|
| ## ๐ Example Data |
| | Page Number | Content | |
| |-------------|---------| |
| | 1 | I laud Agni, the chosen Priest, God, minister of sacrifice... | |
| | 2 | Beautiful Vayu, come, for thee these Soma drops have been prepared... | |
|
|
| ## ๐ฅ How to Load the Dataset |
| ```python |
| from datasets import load_dataset |
| |
| dataset = load_dataset("kala185/rigveda") |
| print(dataset["train"][0]) |
| |
| |