taidng commited on
Commit
406f09a
1 Parent(s): 484592a

update README and processing script

Browse files
Files changed (2) hide show
  1. README.md +2 -4
  2. process_viquad.py +2 -2
README.md CHANGED
@@ -122,8 +122,7 @@ Original dataset:
122
  url = "https://aclanthology.org/2020.coling-main.233",
123
  doi = "10.18653/v1/2020.coling-main.233",
124
  pages = "2595--2605",
125
- abstract = "Over 97 million inhabitants speak Vietnamese as the native language in the world. However, there are few research studies on machine reading comprehension (MRC) in Vietnamese, the task of understanding a document or text, and answering questions related to it. Due to the lack of benchmark datasets for Vietnamese, we present the Vietnamese Question Answering Dataset (UIT-ViQuAD), a new dataset for the low-resource language as Vietnamese to evaluate MRC models. This dataset comprises over 23,000 human-generated question-answer pairs based on 5,109 passages of 174 Vietnamese articles from Wikipedia. In particular, we propose a new process of dataset creation for Vietnamese MRC. Our in-depth analyses illustrate that our dataset requires abilities beyond simple reasoning like word matching and demands complicate reasoning such as single-sentence and multiple-sentence inferences. Besides, we conduct experiments on state-of-the-art MRC methods in English and Chinese as the first experimental models on UIT-ViQuAD, which will be compared to further models. We also estimate human performances on the dataset and compare it to the experimental results of several powerful machine models. As a result, the substantial differences between humans and the best model performances on the dataset indicate that improvements can be explored on UIT-ViQuAD through future research. Our dataset is freely available to encourage the research community to overcome challenges in Vietnamese MRC.",
126
- }
127
  ```
128
 
129
  Shared task where version 2.0 was published:
@@ -139,8 +138,7 @@ Shared task where version 2.0 was published:
139
  publisher={Vietnam National University Journal of Science},
140
  author={Nguyen, Kiet and Tran, Son Quoc and Nguyen, Luan Thanh and Huynh, Tin Van and Luu, Son Thanh and Nguyen, Ngan Luu-Thuy},
141
  year={2022},
142
- month=dec }
143
-
144
  ```
145
 
146
  ### Acknowledgements
 
122
  url = "https://aclanthology.org/2020.coling-main.233",
123
  doi = "10.18653/v1/2020.coling-main.233",
124
  pages = "2595--2605",
125
+ abstract = "Over 97 million inhabitants speak Vietnamese as the native language in the world. However, there are few research studies on machine reading comprehension (MRC) in Vietnamese, the task of understanding a document or text, and answering questions related to it. Due to the lack of benchmark datasets for Vietnamese, we present the Vietnamese Question Answering Dataset (UIT-ViQuAD), a new dataset for the low-resource language as Vietnamese to evaluate MRC models. This dataset comprises over 23,000 human-generated question-answer pairs based on 5,109 passages of 174 Vietnamese articles from Wikipedia. In particular, we propose a new process of dataset creation for Vietnamese MRC. Our in-depth analyses illustrate that our dataset requires abilities beyond simple reasoning like word matching and demands complicate reasoning such as single-sentence and multiple-sentence inferences. Besides, we conduct experiments on state-of-the-art MRC methods in English and Chinese as the first experimental models on UIT-ViQuAD, which will be compared to further models. We also estimate human performances on the dataset and compare it to the experimental results of several powerful machine models. As a result, the substantial differences between humans and the best model performances on the dataset indicate that improvements can be explored on UIT-ViQuAD through future research. Our dataset is freely available to encourage the research community to overcome challenges in Vietnamese MRC."}
 
126
  ```
127
 
128
  Shared task where version 2.0 was published:
 
138
  publisher={Vietnam National University Journal of Science},
139
  author={Nguyen, Kiet and Tran, Son Quoc and Nguyen, Luan Thanh and Huynh, Tin Van and Luu, Son Thanh and Nguyen, Ngan Luu-Thuy},
140
  year={2022},
141
+ month=dec}
 
142
  ```
143
 
144
  ### Acknowledgements
process_viquad.py CHANGED
@@ -46,8 +46,8 @@ for split in ["train", "dev", "test"]:
46
  question_set = set()
47
  for q in qas:
48
  question = q["question"]
49
- answers = q.get("answers", [])
50
- plausible_answers = q.get("plausible_answers", [])
51
  # Dedup answers
52
  if answers:
53
  answers = deduplicate_answers(answers)
 
46
  question_set = set()
47
  for q in qas:
48
  question = q["question"]
49
+ answers = q.get("answers", None)
50
+ plausible_answers = q.get("plausible_answers", None)
51
  # Dedup answers
52
  if answers:
53
  answers = deduplicate_answers(answers)