Datasets:
Tasks:
Question Answering
Modalities:
Text
Formats:
parquet
Sub-tasks:
extractive-qa
Size:
10K - 100K
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -49,11 +49,10 @@ The code to create the dataset is available on [this Colab notebook](https://col
|
|
| 49 |
The dataset contains a train and a validation set, with 15343 and 3011 examples, respectively. Access them with
|
| 50 |
|
| 51 |
```py
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
df_val = pd.read_parquet("hf://datasets/coastalcph/tydi_xor_rc/" + splits["validation"])
|
| 57 |
```
|
| 58 |
|
| 59 |
### Data Instances
|
|
|
|
| 49 |
The dataset contains a train and a validation set, with 15343 and 3011 examples, respectively. Access them with
|
| 50 |
|
| 51 |
```py
|
| 52 |
+
from datasets import load_dataset
|
| 53 |
+
dataset = load_dataset("coastalcph/tydi_xor_rc")
|
| 54 |
+
df_train = dataset["train"].to_pandas()
|
| 55 |
+
df_val = dataset["validation"].to_pandas()
|
|
|
|
| 56 |
```
|
| 57 |
|
| 58 |
### Data Instances
|