Nadav commited on
Commit
68b4843
1 Parent(s): 4749ace

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -83,12 +83,12 @@ Description of the dataset columns:
83
  | question_text | str | The question to answer |
84
  | document_plaintext | str | The context, a Wikipedia paragraph that might or might not contain the answer to the question |
85
  | annotations["answer_start"] | list[int] | The char index in 'document_plaintext' where the answer starts. If the question is unanswerable - [-1] |
86
- | annotations["answer_text"] | list[str] | The answer, a span of text from 'document_plaintext'. If the question is unanswerable - an empty list |
87
 
88
 
89
  **Notice:** If the question is *answerable*, annotations["answer_start"] and annotations["answer_text"] contain a list of length 1
90
  (In some variations of the dataset the lists might be longer, e.g. if more than one person annotated the instance, but not in our case).
91
- If the question is *unanswerable*, annotations["answer_start"] will have "-1", while annotations["answer_text"] contain an empty list of length 0.
92
 
93
 
94
  ## Useful stuff
 
83
  | question_text | str | The question to answer |
84
  | document_plaintext | str | The context, a Wikipedia paragraph that might or might not contain the answer to the question |
85
  | annotations["answer_start"] | list[int] | The char index in 'document_plaintext' where the answer starts. If the question is unanswerable - [-1] |
86
+ | annotations["answer_text"] | list[str] | The answer, a span of text from 'document_plaintext'. If the question is unanswerable - [''] |
87
 
88
 
89
  **Notice:** If the question is *answerable*, annotations["answer_start"] and annotations["answer_text"] contain a list of length 1
90
  (In some variations of the dataset the lists might be longer, e.g. if more than one person annotated the instance, but not in our case).
91
+ If the question is *unanswerable*, annotations["answer_start"] will have "-1", while annotations["answer_text"] contain a list with an empty sring.
92
 
93
 
94
  ## Useful stuff