Implicit question
Why don’t people acquire the necessary skills?
EMNLP
2023
Elaborative Simplification as Implicit Questions Under Discussion
Conference on Empirical Methods in Natural Language Processing (EMNLP) · 2023
† Equal contribution.
Editors sometimes add an explanation when simplifying an article. ElabQUD asks which implicit question that explanation answers, and which earlier words prompted it. The dataset covers 1,299 elaborations in simplified news articles.
We use these annotations to study what editors explain. We also generate elaborations in two stages: first a question, then its answer. This improves the generated explanations in our experiments.
New jobs in New Haven require skills that many local young people lack. In the simplified article, the editor adds an explanation.
Why don’t people acquire the necessary skills?
Many do not have the money to get the training they need.
Figure 1, page 1; discussion on page 2. Question and added sentence quoted from Figure 1. The article example is from Srikanth and Li (2021); context paraphrased.
There are 2,878 question–target annotations for 1,299 elaborations. An elaboration may have more than one annotation.
file_num identifies the article; elab_line gives the line containing the added explanation.question is the implicit question. target and target_line locate the earlier text that prompted it; worker_num identifies the annotator.Requires pandas.
import pandas as pd
revision = "8a253a8f014c642d5156333313f9d1573a031767"
url = (
"https://raw.githubusercontent.com/sheffwb/elabQUD/"
f"{revision}/data/targets_and_questions.tsv"
)
annotations = pd.read_csv(url, sep="\t")
print(len(annotations)) # 2878 question–target pairs
print(annotations.groupby(["file_num", "elab_line"]).ngroups) # 1299
@inproceedings{elabqud2023,
title={{Elaborative Simplification as Implicit Questions Under Discussion}},
author={Wu, Yating and Sheffield, William and Mahowald, Kyle and Li, Junyi Jessy},
year={2023},
booktitle={Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing},
doi={10.18653/v1/2023.emnlp-main.336},
pages={5525--5537},
url={https://aclanthology.org/2023.emnlp-main.336/},
publisher={Association for Computational Linguistics}
}