Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -57,6 +57,14 @@ The dataset structure is similar to the original SQuAD dataset, consisting of co
|
|
| 57 |
* `text`: A list of possible answer spans from the context.
|
| 58 |
* `answer_start`: A list of starting character indices for each answer span within the context.
|
| 59 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
## Citing
|
| 61 |
If you use the IndicSQuAD dataset, please cite the following paper:
|
| 62 |
```
|
|
|
|
| 57 |
* `text`: A list of possible answer spans from the context.
|
| 58 |
* `answer_start`: A list of starting character indices for each answer span within the context.
|
| 59 |
|
| 60 |
+
## How to Use
|
| 61 |
+
|
| 62 |
+
```
|
| 63 |
+
from datasets import load_dataset
|
| 64 |
+
lang = "Marathi"
|
| 65 |
+
indicSQuAD_dataset = load_dataset("l3cube-pune/indic-squad", data_dir=lang)
|
| 66 |
+
```
|
| 67 |
+
|
| 68 |
## Citing
|
| 69 |
If you use the IndicSQuAD dataset, please cite the following paper:
|
| 70 |
```
|