danielh commited on
Commit
e9d57c3
1 Parent(s): bdf4732

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -3
README.md CHANGED
@@ -61,12 +61,13 @@ Description of the dataset columns:
61
 
62
  | Column name | type | Description |
63
  | ----------- | ----------- | ----------- |
64
- | lang | str | The language of the data instance |
65
  | question | str | The question to answer |
66
- | context | str | The context, a Wikipedia paragraph that might or might not contain the answer to the question |
67
  | answertable | bool | True if the question can be answered given the context, False otherwise |
68
  | answer_start | int | The character index in 'context' where the answer starts. If the question is unanswerable given the context, this is -1 |
69
- | answer | str | The answer, a span of text from 'context'. If the question is unanswerable given the context, this can be 'yes' or 'no' |
 
70
 
71
 
72
  ## Useful stuff
 
61
 
62
  | Column name | type | Description |
63
  | ----------- | ----------- | ----------- |
64
+ | lang | str | The language of the question |
65
  | question | str | The question to answer |
66
+ | context | str | The context, a Wikipedia paragraph in English that might or might not contain the answer to the question |
67
  | answertable | bool | True if the question can be answered given the context, False otherwise |
68
  | answer_start | int | The character index in 'context' where the answer starts. If the question is unanswerable given the context, this is -1 |
69
+ | answer | str | The answer in English, a span of text from 'context'. If the question is unanswerable given the context, this can be 'yes' or 'no' |
70
+ | answer_inlang | str | The answer in the same language as the question, only available for some instances (otherwise, NaN) |
71
 
72
 
73
  ## Useful stuff