dovedovepigeon
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,18 @@
|
|
1 |
-
---
|
2 |
-
license: cc-by-sa-4.0
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-sa-4.0
|
3 |
+
---
|
4 |
+
|
5 |
+
# Dataset Card for RedirectQA v0.1.0
|
6 |
+
RedirectQA v0.1.0 is an entity-based Question Answering (QA) dataset that considers multiple surface forms.
|
7 |
+
For each triplet, the dataset includes multiple QA pairs based on different surface forms, allowing for a more comprehensive evaluation of entity knowledge of models.
|
8 |
+
|
9 |
+
## Dataset Structure
|
10 |
+
```Python
|
11 |
+
DatasetDict({
|
12 |
+
train: Dataset({
|
13 |
+
features: ['subject', 'predicate', 'object', 'subject_surface', 'predicate_surface', 'object_surface', 'subject_aliases', 'object_aliases', 'subject_wiki_title', 'object_wiki_title', 'question', 'possible_answers', 'triplet_id', 'subject_redirect_wiki_title', 'subject_surface_category', 'index'],
|
14 |
+
num_rows: 22869
|
15 |
+
})
|
16 |
+
})
|
17 |
+
```
|
18 |
+
|