doi stringlengths 10 10 | chunk-id stringlengths 1 4 | chunk stringlengths 1 1.66k | id stringlengths 10 10 | title stringlengths 19 148 | summary stringlengths 345 1.92k | source stringlengths 31 31 | authors list | categories list | comment stringlengths 4 284 ⌀ | journal_ref stringclasses 14
values | primary_category stringclasses 16
values | published stringlengths 8 8 | updated stringlengths 8 8 | references list |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1910.01108 | 0 | DistilBERT, a distilled version of BERT: smaller,
faster, cheaper and lighter
Victor SANH, Lysandre DEBUT, Julien CHAUMOND, Thomas WOLF
Hugging Face
{victor,lysandre,julien,thomas}@huggingface.co
Abstract
As Transfer Learning from large-scale pre-trained models becomes more prevalent
in Natural Language Processing (NLP... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 1 | loss combining language modeling, distillation and cosine-distance losses. Our
smaller, faster and lighter model is cheaper to pre-train and we demonstrate its
capabilities for on-device computations in a proof-of-concept experiment and a
comparative on-device study.
1 Introduction
Figure 1: Parameter counts of several... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 2 | in real-time has the potential to enable novel and interesting language processing applications, the
growing computational and memory requirements of these models may hamper wide adoption.
1See for instance the recently released MegatronLM ( https://nv-adlr.github.io/MegatronLM )
EMC^2: 5th Edition Co-located with Neur... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 3 | through distillation via the supervision of a bigger Transformer language model can achieve similar
performance on a variety of downstream tasks, while being 60% faster at inference time. Further
ablation studies indicate that all the components of the triple loss are important for best performances.
We have made the t... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 4 | generalization capabilities of the model and how well it will perform on the test set3.
Training loss The student is trained with a distillation loss over the soft target probabilities of
the teacher: Lce=P
itilog(si)where ti(resp. si) is a probability estimated by the teacher
(resp. the student). This objective resul... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 5 | and teacher hidden states vectors.
3 DistilBERT: a distilled version of BERT
Student architecture In the present work, the student - DistilBERT - has the same general architecture as BERT. The token-type embeddings and the pooler are removed while the number of layers
is reduced by a factor of 2. Most of the operations... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 6 | 3E.g. BERT-base’s predictions for a masked token in " I think this is the beginning of a
beautiful [MASK] " comprise two high probability tokens ( dayandlife) and a long tail of valid predictions
(future ,story ,world . . . ).
2
Table 1: DistilBERT retains 97% of BERT performance. Comparison on the dev sets of the
GLUE... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 7 | performance on downstream tasks. Comparison on downstream tasks: IMDb (test accuracy) and SQuAD 1.1 (EM/F1 on dev set).
D: with a second step of distillation during
fine-tuning.
Model IMDb SQuAD
(acc.) (EM/F1)
BERT-base 93.46 81.2/88.5
DistilBERT 92.82 77.7/85.8
DistilBERT (D) - 79.1/86.9Table 3: DistilBERT is significan... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 8 | examples per batch) using dynamic masking and without the next sentence prediction objective.
Data and compute power We train DistilBERT on the same corpus as the original BERT model:
a concatenation of English Wikipedia and Toronto Book Corpus [Zhu et al., 2015]. DistilBERT
was trained on 8 16GB V100 GPUs for approxim... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 9 | et al. [2018]) encoder followed by two BiLSTMs.4
The results on each of the 9 tasks are showed on Table 1 along with the macro-score (average of
individual scores). Among the 9 tasks, DistilBERT is always on par or improving over the ELMo
baseline (up to 19 points of accuracy on STS-B). DistilBERT also compares surpris... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 10 | We also studied whether we could add another step of distillation during the adaptation phase by
fine-tuning DistilBERT on SQuAD using a BERT model previously fine-tuned on SQuAD as a
4We use jiant [Wang et al., 2019] to compute the baseline.
3
Table 4: Ablation study. Variations are relative to the model trained with tr... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 11 | Size and inference speed
To further investigate the speed-up/size trade-off of DistilBERT, we compare (in Table 3) the number
of parameters of each model along with the inference time needed to do a full pass on the STSB development set on CPU (Intel Xeon E5-2690 v3 Haswell @2.9GHz) using a batch size of 1.
DistilBERT ... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 12 | presents the deltas with the full triple loss: removing the Masked Language Modeling loss has little
impact while the two distillation losses account for a large portion of the performance.
5 Related work
Task-specific distillation Most of the prior works focus on building task-specific distillation setups. Tang et al. [... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 13 | multi-task learning to regularize the distillation. The authors apply Multi-Task Knowledge Distillation
to learn a compact question answering model from a set of large question answering models. An
application of multi-distillation is multi-linguality: Tsai et al. [2019] adopts a similar approach to us
by pre-training ... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 14 | that retains 97% of the language understanding capabilities. We showed that a general-purpose
language model can be successfully trained with distillation and analyzed the various components
with an ablation study. We further demonstrated that DistilBERT is a compelling option for edge
applications.
References
Jacob De... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 15 | Emma Strubell, Ananya Ganesh, and Andrew McCallum. Energy and policy considerations for deep learning in
nlp. In ACL, 2019.
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz Kaiser,
and Illia Polosukhin. Attention is all you need. In NIPS , 2017.
Thomas Wolf, Lysandre Debut... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 16 | Yukun Zhu, Ryan Kiros, Richard S. Zemel, Ruslan Salakhutdinov, Raquel Urtasun, Antonio Torralba, and Sanja
Fidler. Aligning books and movies: Towards story-like visual explanations by watching movies and reading
books. 2015 IEEE International Conference on Computer Vision (ICCV) , pages 19–27, 2015.
Alex Wang, Amanpree... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 17 | Htut, Thibault F’evry, Berlin Chen, Nikita Nangia, Haokun Liu, Anhad Mohananey, Shikha Bordia, Nicolas
Patry, Ellie Pavlick, and Samuel R. Bowman. jiant 1.1: A software toolkit for research on general-purpose
text understanding models. http://jiant.info/ , 2019.
Andrew L. Maas, Raymond E. Daly, Peter T. Pham, Dan Huang... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1910.01108 | 18 | Iulia Turc, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Well-read students learn better: The impact
of student initialization on knowledge distillation. ArXiv , abs/1908.08962, 2019.
Ze Yang, Linjun Shou, Ming Gong, Wutao Lin, and Daxin Jiang. Model compression with multi-task knowledge
distillation for web-sca... | 1910.01108 | DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter | As Transfer Learning from large-scale pre-trained models becomes more
prevalent in Natural Language Processing (NLP), operating these large models in
on-the-edge and/or under constrained computational training or inference
budgets remains challenging. In this work, we propose a method to pre-train a
smaller general-pur... | http://arxiv.org/pdf/1910.01108 | [
"Victor Sanh",
"Lysandre Debut",
"Julien Chaumond",
"Thomas Wolf"
] | [
"cs.CL"
] | February 2020 - Revision: fix bug in evaluation metrics, updated
metrics, argumentation unchanged. 5 pages, 1 figure, 4 tables. Accepted at
the 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing
- NeurIPS 2019 | null | cs.CL | 20191002 | 20200301 | [
{
"id": "1910.01108"
}
] |
1710.06481 | 0 | Constructing Datasets
for Multi-hop Reading Comprehension Across Documents
Johannes Welbl1Pontus Stenetorp1Sebastian Riedel1;2
1University College London,2Bloomsbury AI
fj.welbl,p.stenetorp,s.riedel g@cs.ucl.ac.uk
Abstract
Most Reading Comprehension methods limit
themselves to queries which can be answered
using a sing... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 1 | thematically linked documents. Two datasets
from different domains are induced,1and we
identify potential pitfalls and devise circumvention strategies. We evaluate two previously proposed competitive models and find
that one can integrate information across documents. However, both models struggle to select relevant inf... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 2 | The Arabian Sea is a region of the northern Indian Ocean bounded on the north by Pakistan and Iran, on the west by northeastern Somalia and the Arabian Peninsula, and on the east by India …Figure 1: A sample from the W IKIHOPdataset where it
is necessary to combine information spread across multiple documents to infer ... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 3 | from text, we must move beyond a scenario where
relevant information is coherently and explicitly
stated within a single document. Methods with this
capability would aid Information Extraction (IE) applications, such as discovering drug-drug interac-arXiv:1710.06481v2 [cs.CL] 11 Jun 2018
tions (Gurulingappa et al., 2... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 4 | Gardens are located in Mumbai , and then, from a
second document, that Mumbai is a city in India .
We define a novel RC task in which a model
should learn to answer queries by combining evidence stated across documents. We introduce a
methodology to induce datasets for this task and derive two datasets. The first, W IKIH... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 5 | samples, the answer can be inferred from the given
documents by a human annotator. Still, constructing multi-document datasets is challenging; we encounter and prescribe remedies for several pitfalls
associated with their assembly – for example, spurious co-locations of answers and specific documents.
For both datasets ... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 6 | through ablation studies.
2 Task and Dataset Construction Method
We will now formally define the multi-hop RC task,
and a generic methodology to construct multi-hop
RC datasets. Later, in Sections 3 and 4 we will
demonstrate how this method is applied in practice
by creating datasets for two different domains.
Task Form... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 7 | Dataset Assembly We assume that there exists a
document corpus D, together with a KB containing
fact triples (s; r; o )– with subject entity s, relation r,
and object entity o. For example, one such fact
could be (Hanging Gardens ofMumbai, country,
India) . We start with individual KB facts and transform them into quer... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 8 | belonging to the subject entity sof the query q. As
traversal end points, we use the set of all entity nodes
that are type-consistent answers to q.2Note that
whenever there is another fact (s; r; o0)in the KB,
i.e. a fact producing the same qbut with a different
a, we will not include o0into the set of end points
for ... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 9 | the chain connecting sanda– ensuring that multihop reasoning goes beyond resolving co-reference
within a single document. Note that including
other type-consistent candidates alongside aas end
points in the graph traversal – and thus into the support documents – renders the task considerably more
challenging (Jia and... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 10 | Figure 2: A bipartite graph connecting entities and documents mentioning them. Bold edges are those traversed
for the first fact in the small KB on the right; yellow highlighting indicates documents in Sqand candidates in Cq.
Check and cross indicate correct and false candidates.
3 W IKIHOP
WIKIPEDIA contains an abundan... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 11 | tuples define a slot filling task with the goal of predicting the answer , given an article andproperty .
One problem with using W IKIREADING as an extractive RC dataset is that 54.4% of the samples
do not state the answer explicitly in the given article (Hewlett et al., 2016). However, we observed
that some of the artic... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 12 | we first remove samples where the answer is stated
explicitly in the W IKIPEDIA article about the item .4
The bipartite graph is structured as follows:
(1) for edges from articles to entities: all articles
mentioning an entity eare connected to e; (2) for
edges from entities to articles: each entity eis only
connected t... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 13 | We executed graph traversal up to a maximum chain
length of 3 documents. To not pose unreasonable
computational constraints, samples with more than
64 different support documents or 100 candidates
are removed, discarding 1% of the samples.
3.2 Mitigating Dataset Biases
Dataset creation is always fraught with the risk ... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 14 | combat this issue, we subsampled the dataset to ensure that samples of any one particular answer candidate make up no more than 0:1%of the dataset,
and omitted articles about the United States .
Document-Answer Correlations A problem
unique to our multi-document setting is the possibility of spurious correlations betwe... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 15 | of how often dco-occurs with cin a sample where
cis also the correct answer. We use this statistic
to filter the dataset, by discarding samples with at
least one document-candidate pair (d; c)for which
cooccurrence (d; c)>20.
4 M EDHOP
Following the same general methodology, we next
construct a second dataset for the do... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 16 | either severely limited in size (Hersh et al., 2007)
or cover a very diverse set of query types (Nentidis
et al., 2017), complicating the application of neural models that have seen successes for other domains (Wiese et al., 2017).
A task that has received significant attention is
detecting Drug-Drug Interactions (DDIs)... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 17 | DDIs are caused by Protein-Protein Interaction (PPI) chains, forming biomedical pathways.
If we consider PPI chains across documents,
we find examples like in Figure 3. Here the
first document states that the drug Leuprolide
causes GnRH receptor -induced synaptic potentiations, which can be blocked by the protein
Progona... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 18 | Q: (Leuprolide, interacts_with, ?) Options: {Triptorelin, Urofollitropin}
Leuprolide ... elicited a long-lasting potentiation of excitatory postsynaptic currents… [GnRH receptor]-induced synaptic potentiation was blocked … by [Progonadoliberin-1], a specific [GnRH receptor] antagonist…
Analyses of gene expression dem... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 19 | drugs and proteins on one side, and M EDLINE abstracts on the other.
The edge structure is as follows: (1) There is an
edge from a document to all proteins mentioned in it.
(2) There is an edge between a document and a drug,
if this document also mentions a protein known to be
a target for the drug according to D RUGBA... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 20 | drug 2), we then select drug 1as the starting point
for the graph traversal. As possible end points, we
consider any other drug, apart from drug 1and those
interacting with drug 1other than drug 2. Similar to
WIKIHOP, we exclude samples with more than 64
support documents and impose a maximum document length of 300 tok... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 21 | drugs, but Isotretinoin with only 34. This leads
to similar candidate frequency imbalance issues
as with W IKIHOP– but due to its smaller size
MEDHOPis difficult to sub-sample. Nevertheless
we can successfully combat this issue by masking
entity names, detailed in Section 6.2.
5 Dataset Analysis
Table 1 shows the datase... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 22 | available per sample is arguably greater. One could,
for example, re-frame the task as binary path classification: given two entities and a document path
connecting them, determine whether a given relation holds. For such a case, W IKIHOPand M EDHOPwould have more than 1M and 150K paths to
be classified, respectively. In... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 23 | # cand. – MH 2 9 8.9 9
# docs. – MH 5 64 36.4 29
# tok/doc – MH 5 458 253.9 264
Table 2: Candidates and documents per sample and document length statistics. WH: W IKIHOP; MH: M EDHOP.
are selected up until a maximum of 64 documents is
reached. Few samples have less than 9 candidates,
and samples would have far more fal... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 24 | the appropriate level of granularity for the answer is difficult to predict – e.g. (west suffolk,
administrative entity, ?) with candidates
suffolk and england . This is a direct consequence of including type-consistent false answer
candidates from W IKIDATA , which can lead to questions with several true answers. For 9... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 25 | cases can either be due to conflicting information between W IKIDATA and W IKIPEDIA (8%), e.g. when
the date of birth for a person differs between W IKIDATA and what is stated in the W IKIPEDIA article,
or because the answer is consistent but cannot be
inferred from the support documents (12%). When
answering 100 questi... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 26 | answer to the query “follows” ,“is likely” , or“does
not follow” , given the relevant documents. 68% of
the cases were considered as “follows” or as “is
likely” . The majority of cases violating the distant
supervision assumption were due to lacking a necessary PPI in one of the connecting documents.5.2 Crowdsourced Hu... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 27 | with the fact 4.6% of the time; prior knowledge of
the fact is thus not likely to be a confounding effect
on the other judgments. Inter-annotator agreement
as measured by Fleiss’ kappa is 0.253 in (2), and
0.281 in (3) – indicating a fair overall agreement, according to Landis and Koch (1977). Overall, 9.5%
of samples ... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 28 | initially expected, given the construction of samples
through graph traversal. However, when inspecting
cases judged as “single” more closely, we observed
that many indeed provide a clear hint about the correct answer within one document, but without stating it explicitly. For example, for the fact (witold
cichy, count... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 29 | Hill et al. (2016), and Hewlett et al. (2016), who
evaluate only on distantly supervised samples. For
WIKIHOP, we applied the same annotation strategy
as described in Section 5.2. The validated test set
consists of those samples labeled by a majority of
annotators (at least 2 of 3) as “follows” , and requiring“multiple... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 30 | to perform lexical abstraction. Training will be conducted on the respective training sets, and evaluation
on both the full test set and validated portion (Section 5.3) allowing for a comparison between the two.
6.1 Models
Random Selects a random candidate; note that the
number of candidates differs between samples.
Ma... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 31 | follows: For each candidate c, the concatenation of
the query qwithcis fed as an ORquery into the
whoosh text retrieval engine.5It then predicts the
candidate with the highest TF-IDF similarity score:
arg max
c2Cq[max
s2Sq(TF-IDF (q+c; s))] (1)
Document-cue During dataset construction we
observed that certain document-... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 32 | (2017a)), and FastQA (Weissenborn et al., 2017),
which have shown a robust performance across several datasets. These models predict an answer span
within a single document. We adapt them to a multidocument setting by sequentially concatenating all
d2Sqin random order into a superdocument,
adding document separator tok... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 33 | ForBiDAF , the default hyperparameters from the
implementation of Seo et al. (2017a) are used, with
pretrained GloVe (Pennington et al., 2014) embeddings. However, we restrict the maximum document length to 8,192 tokens and hidden size to 20,
and train for 5,000 iterations with batchsize 16 in order to fit the model int... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 34 | phenomenon already observed by Hermann et al.
(2015). When comprehending a text, the correct answer should become clear from its context – rather
than from an intrinsic property of the answer expression. To evaluate the ability of models to rely
on context alone, we created masked versions of
the datasets: we replace a... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 35 | to rely on the context surrounding the mentions.
6.3 Results and Discussion
Table 5 shows the experimental outcomes for W IKIHOPand M EDHOP, together with results for the
masked setting; we will first discuss the former. A
first observation is that candidate mention frequency
does not produce better predictions than a ra... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 36 | worse than random. We conclude that lexical matching with a single support document is not enough to
build a strong predictive model for both datasets.
TheDocument-cue baseline can predict more than
a third of the samples correctly, for both datasets,
even after sub-sampling frequent document-answer
pairs for W IKIHOP.... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 37 | Document-cue 36.7 41.7 7.4 20.3 44.9 53.1 15.2 16.3
FastQA 25.7 27.2 35.8 38.0 23.1 24.5 31.3 30.6
BiDAF 42.9 49.7 54.5 59.8 47.8 61.2 33.7 42.9
Table 5: Test accuracies for the W IKIHOPand M EDHOPdatasets, both in standard (unmasked) and masked setup.
Columns marked with asterisk are for the validated portion of the d... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 38 | Table 6: Test accuracy comparison when only using documents leading to the correct answer (gold chain). Columns
with asterisk hold results for the validated samples.
tion 3.2. In Table 4 we compare the two relevant
baselines on W IKIHOPbefore and after applying
filtering measures. The absolute strength of these
baseline... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 39 | andBiDAF predict the answer by extracting a span
from the support documents without relying on the
candidate options Cq.
In the masked setup all baseline models reliant on
lexical cues fail in the face of the randomized answer
expressions, since the same answer option has different placeholders in different samples. Es... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 40 | FastQA rem 38.0 41.2 28.6 24.5
Table 7: Test accuracy (masked) when only documents
containing answer candidates are given ( rem).
masking. In contrast, for the open-domain setting of
WIKIHOP, a reduction of the answer vocabulary to
100 random single-token mask expressions clearly
helps the model in selecting a candidat... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 41 | they were able to select and read only relevant documents: Table 6 summarizes these results. Models
improve greatly in this gold chain setup, with up
to 81.2% / 85.7% on W IKIHOPin the masked setting for BiDAF . This demonstrates that RC models
are capable of identifying the answer when few or
no plausible false candid... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 42 | drop of 3.3%/6.2% on M EDHOP, and 10.0%/2.1%
on W IKIHOP, demonstrating that BiDAF , is able
to leverage cross-document information. FastQA
shows a slight increase of 2.2%/3.2% for W IKIHOP
and a decrease of 2.7%/4.1% on M EDHOP. While
inconclusive, it is clear that FastQA with fewer latent interactions than BiDAF has ... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 43 | et al., 2016; Paperno et al., 2016), science exams (Welbl et al., 2017), and trivia (Boyd-Graber
et al., 2012; Dunn et al., 2017). Besides TriviaQA (Joshi et al., 2017), all these datasets are confined to single documents, and RC typically does not
require a combination of multiple independent facts.
In contrast, W IKIH... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 44 | include Inductive Logic Programming (Quinlan,
1990; Pazzani et al., 1991; Richards and Mooney,
1991) and probabilistic relaxations to logic like
Markov Logic (Richardson and Domingos, 2006;
Schoenmackers et al., 2008). These approaches
suffer from limited coverage and inefficient inference, though efforts to circumvent ... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 45 | uses dense rule and symbol embeddings to learn a
differentiable backward chaining algorithm.
All of these previous approaches center around
learning how to combine facts from a KB, i.e., in
a structured form with pre-defined schema. That
is, they work as part of a pipeline, and either rely
on the output of a previous IE... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 46 | on lexical semantic similarity is beneficial for reranking answers in open-domain non-factoid QA.
Jansen et al. (2017) chain textual background resources for science exam QA and provide multisentence answer explanations. Beyond, a rich collection of neural models tailored towards multi-step
RC has been developed. Memory... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 47 | et al., 2017). All these methods show promise for
single-document RC, and by design should be capable of integrating multiple facts across documents.
However, thus far they have not been evaluated for a
cross-document multi-step RC task – as in this work.
Learning Search Expansion Other research addresses expanding the... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 48 | remains. Finally, we identified the selection of relevant document sets as the most promising direction
for future research.
Thus far, our datasets center around factoid questions about entities, and as extractive RC datasets,
it is assumed that the answer is mentioned verbatim. While this limits the types of questions ... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 49 | David Botstein, Heather Butler, J. Michael Cherry, Allan P. Davis, Kara Dolinski, Selina S. Dwight, Janan T.
Eppig, Midori A. Harris, David P. Hill, Laurie IsselTarver, Andrew Kasarskis, Suzanna Lewis, John C.
Matese, Joel E. Richardson, Martin Ringwald, Gerald M. Rubin, and Gavin Sherlock. 2000. Gene ontology: tool fo... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 50 | Jonathan Berant, Andrew Chou, Roy Frostig, and Percy
Liang. 2013. Semantic parsing on freebase fromquestion-answer pairs. In Proceedings of the 2013
Conference on Empirical Methods in Natural Language Processing , pages 1533–1544.
Tamara Bobic, Roman Klinger, Philippe Thomas, and
Martin Hofmann-Apitius. 2012. Improving... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 51 | Jason Weston. 2015. Large-scale simple question answering with memory networks. CoRR ,
abs/1506.02075.
Jordan Boyd-Graber, Brianna Satinoff, He He, and Hal
Daum ´e, III. 2012. Besting the quiz master: Crowdsourcing incremental classification games. In Proceedings of the 2012 Joint Conference on Empirical Methods in Natu... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 52 | reading comprehension task. In Proceedings of the
54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages
2358–2367.
Peter Clark, Oren Etzioni, Tushar Khot, Ashish Sabharwal, Oyvind Tafjord, Peter Turney, and Daniel
Khashabi. 2016. Combining retrieval, statistics, and
infere... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 53 | entities, relations, and text using recurrent neural networks. European Chapter of the Association for Computational Linguistics (EACL) , pages 132–141.
Matthew Dunn, Levent Sagun, Mike Higgins, V . Ugur
G¨uney, V olkan Cirik, and Kyunghyun Cho. 2017.
SearchQA: A new Q&A dataset augmented with context from a search eng... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 54 | Surdeanu, and Peter Clark. 2015. Higher-order lexical semantic models for non-factoid answer reranking.
Transactions of the Association of Computational Linguistics , 3:197–210.
Matt Gardner, Partha Pratim Talukdar, Bryan Kisiel, and
Tom M. Mitchell. 2013. Improving learning and inference in a large knowledge-base usin... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 55 | and Phil Blunsom. 2015. Teaching machines to read
and comprehend. In Advances in Neural Information
Processing Systems , pages 1693–1701.William Hersh, Aaron Cohen, Lynn Ruslen, and Phoebe
Roberts. 2007. TREC 2007 genomics track overview.
InNIST Special Publication .
Daniel Hewlett, Alexandre Lacoste, Llion Jones, Illi... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 56 | Minghao Hu, Yuxing Peng, and Xipeng Qiu. 2017.
Mnemonic reader for machine comprehension. CoRR ,
abs/1705.02798.
Sarthak Jain. 2016. Question answering over knowledge
base using factual memory networks. In Proceedings
of NAACL-HLT , pages 109–115.
Peter Jansen, Rebecca Sharp, Mihai Surdeanu, and Peter
Clark. 2017. Fram... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 57 | Kleindienst. 2016. Text understanding with the attention sum reader network. Proceedings of the 54th
Annual Meeting of the Association for Computational
Linguistics , pages 908–918.
Jin-Dong Kim, Yue Wang, Toshihisa Takagi, and Akinori
Yonezawa. 2011. Overview of Genia event task in
BioNLP shared task 2011. In Proceedi... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 58 | Random walk inference and learning in a large scale
knowledge base. In Proceedings of the Conference on
Empirical Methods in Natural Language Processing ,
pages 529–539.
Vivian Law, Craig Knox, Yannick Djoumbou, Tim Jewison, An Chi Guo, Yifeng Liu, Adam Maciejewski, David Arndt, Michael Wilson, Vanessa Neveu,
Alexandra... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 59 | 7(4):343–360, December.
Fei Liu and Julien Perez. 2017. Gated end-to-end memory networks. In Proceedings of the 15th Conference
of the European Chapter of the Association for Computational Linguistics, EACL 2017, Volume 1: Long
Papers , pages 1–10.
Mike Mintz, Steven Bills, Rion Snow, and Daniel Jurafsky. 2009. Distant... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 60 | pages 2355–2365.
Arvind Neelakantan, Benjamin Roth, and Andrew McCallum. 2015. Compositional vector space models for
knowledge base completion. Proceedings of the 53rd
Annual Meeting of the Association for ComputationalLinguistics and the 7th International Joint Conference
on Natural Language Processing , pages 156–166... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 61 | abs/1611.09268.
Rodrigo Nogueira and Kyunghyun Cho. 2016. WebNav:
A new large-scale task for natural language based sequential decision making. CoRR , abs/1602.02261.
Rodrigo Nogueira and Kyunghyun Cho. 2017. Taskoriented query reformulation with reinforcement
learning. Proceedings of the 2017 Conference on
Empirical M... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 62 | Papers) , pages 1525–1534.
Michael Pazzani, Clifford Brunk, and Glenn Silverstein.
1991. A knowledge-intensive approach to learning relational concepts. In Proceedings of the Eighth International Workshop on Machine Learning , pages 432–
436, Evanston, IL.
Baolin Peng, Zhengdong Lu, Hang Li, and Kam-Fai
Wong. 2015. Tow... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 63 | John Ross Quinlan. 1990. Learning logical definitions
from relations. Machine Learning , 5:239–266.
Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and
Percy Liang. 2016. SQuAD: 100,000+ questions for
machine comprehension of text. In Proceedings of
the 2016 Conference on Empirical Methods in Natural
Language Processi... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 64 | Tim Rockt ¨aschel and Sebastian Riedel. 2017. End-toend differentiable proving. Advances in Neural Information Processing Systems 30 , pages 3788–3800.
Stefan Schoenmackers, Oren Etzioni, and Daniel S.
Weld. 2008. Scaling textual inference to the web.
InEMNLP ’08: Proceedings of the Conference on
Empirical Methods in N... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 65 | case study of the ROC story cloze task. In Proceedings of the 21st Conference on Computational Natural
Language Learning (CoNLL 2017) , pages 15–25.
Isabel Segura-Bedmar, Paloma Mart ´ınez, and Mar ´ıa Herrero Zazo. 2013. SemEval-2013 Task 9: Extraction of
drug-drug interactions from biomedical texts (DDIExtraction 201... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 66 | Chen. 2017. ReasoNet: Learning to stop reading in
machine comprehension. In Proceedings of the 23rd
ACM SIGKDD International Conference on Knowledge Discovery and Data Mining , KDD ’17, pages
1047–1055.
Alessandro Sordoni, Phillip Bachman, and Yoshua Bengio. 2016. Iterative alternating neural attention for
machine read... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 67 | The UniProt Consortium. 2017. UniProt: the universal protein knowledgebase. Nucleic Acids Research ,
45(D1):D158–D169.
Denny Vrande ˇci´c. 2012. Wikidata: A new platform
for collaborative data collection. In Proceedings of
the 21st International Conference on World Wide Web ,
WWW ’12 Companion, pages 1063–1064.
Dirk We... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 68 | Jason Weston, Sumit Chopra, and Antoine Bordes. 2015.
Memory networks. ICLR .
Jason Weston, Antoine Bordes, Sumit Chopra, and
Tomas Mikolov. 2016. Towards AI-complete question answering: A set of prerequisite toy tasks. ICLR .
Georg Wiese, Dirk Weissenborn, and Mariana Neves.
2017. Neural question answering at BioASQ 5... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 69 | B Appendix: Candidate and Document
statistics
Figure 4 illustrates the distribution of the number of
support documents per sample. W IKIHOPshows a
Poisson-like behaviour – most likely due to structural regularities in W IKIPEDIA – whereas M EDHOP
exhibits a bimodal distribution, in line with our observation that certai... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 70 | than 64 support documents were included.
8https://transacl.org/ojs/index.php/
tacl/article/view/1325
0 100 200 300 400 500 600
document length0.000.020.040.060.08dataset proportionWikiHop
MedHopFigure 5: Histogram for document lengths in W IKIHOP
and M EDHOP.
0 10 20 30 40 50 60
number of candidates0.000.010.020.030.04... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 71 | proportion in the dataset. Overall, the distribution
across the 277 query types follows a power law.
Answer a Wikipedia article d Count Prop.
united states of
americaAU.S. state is a constituent political entity of the United States of America. 68,233 12.9%
united kingdom England is a country that is part of the United... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 72 | united kingdom Scotland [...] is a country that is part of the United Kingdom and covers the
northern third of the island of Great Britain.25,456 4.8%
united kingdom Wales [...] is a country that is part of the United Kingdom and the island of
Great Britain.21,961 4.2%
united kingdom London [...] is the capital and mos... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 73 | Table 8: Examples with largest cooccurrence (d; c)statistic, before filtering. The Count column states
cooccurrence (d; c); the last column states the corresponding relative proportion of training samples (total 527,773).
Query: (the big broadcast of 1937, genre, ?)
Answer: musical film
Text 1: TheBig Broadcast of 1937 i... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 74 | Query: (cmos, subclass of, ?)
Answer: semiconductor device
Text 1: Complementary metal-oxide-semiconductor (CMOS) [...] is a technology for constructing integrated circuits. [...] CMOS uses complementary and symmetrical pairs of p-type and n-type metal oxide
semiconductor field effect transistors (MOSFETs) for logic fun... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 75 | Text 1: The 1936 Minnesota gubernatorial election took place on November 3, 1936. Farmer-Labor Party
candidate Elmer Austin Benson defeated Republican Party of Minnesota challenger Martin A. Nelson.
Text 2: Elmer Austin Benson [...] served as the 24th governor of Minnesota, defeating Republican Martin
Nelson in a lands... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 76 | contained within the region, making it a prime tourist location. [...]
Text3: La Mauricie National Park is located near Shawinigan in the Laurentian mountains, in the Mauricie
region of Quebec, Canada [...]
Table 9: Examples of document gold chains in W IKIHOP. Article titles are boldfaced, the correct answer is underl... | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1710.06481 | 77 | original language ofwork 0.85 %
followed by 0.82 %
position held 0.79 %
Top 25 72.77 %
Top 50 86.42 %
Top 100 96.62 %
Top 200 99.71 %
Table 10: The 25 most frequent query types in W IKIHOPalongside their proportion in the training set. | 1710.06481 | Constructing Datasets for Multi-hop Reading Comprehension Across Documents | Most Reading Comprehension methods limit themselves to queries which can be
answered using a single sentence, paragraph, or document. Enabling models to
combine disjoint pieces of textual evidence would extend the scope of machine
comprehension methods, but currently there exist no resources to train and test
this capa... | http://arxiv.org/pdf/1710.06481 | [
"Johannes Welbl",
"Pontus Stenetorp",
"Sebastian Riedel"
] | [
"cs.CL",
"cs.AI"
] | This paper directly corresponds to the TACL version
(https://transacl.org/ojs/index.php/tacl/article/view/1325) apart from minor
changes in wording, additional footnotes, and appendices | Transactions of the Association for Computational Linguistics
(TACL), Vol 6 (2018), pages 287-302 | cs.CL | 20171017 | 20180611 | [
{
"id": "1710.06481"
}
] |
1707.06347 | 0 | Proximal Policy Optimization Algorithms
John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, Oleg Klimov
OpenAI
{joschu, filip, prafulla, alec, oleg }@openai.com
Abstract
We propose a new family of policy gradient methods for reinforcement learning, which alternate between sampling data through interaction wit... | 1707.06347 | Proximal Policy Optimization Algorithms | We propose a new family of policy gradient methods for reinforcement
learning, which alternate between sampling data through interaction with the
environment, and optimizing a "surrogate" objective function using stochastic
gradient ascent. Whereas standard policy gradient methods perform one gradient
update per data s... | http://arxiv.org/pdf/1707.06347 | [
"John Schulman",
"Filip Wolski",
"Prafulla Dhariwal",
"Alec Radford",
"Oleg Klimov"
] | [
"cs.LG"
] | null | null | cs.LG | 20170720 | 20170828 | [
{
"id": "1604.06778"
},
{
"id": "1506.02438"
},
{
"id": "1602.01783"
},
{
"id": "1611.01224"
},
{
"id": "1707.06347"
},
{
"id": "1707.02286"
},
{
"id": "1606.01540"
}
] |
1707.06347 | 1 | neural network function approximators. The leading contenders are deep Q-learning [Mni+15],
“vanilla” policy gradient methods [Mni+16], and trust region / natural policy gradient methods
[Sch+15b]. However, there is room for improvement in developing a method that is scalable (to
large models and parallel implementatio... | 1707.06347 | Proximal Policy Optimization Algorithms | We propose a new family of policy gradient methods for reinforcement
learning, which alternate between sampling data through interaction with the
environment, and optimizing a "surrogate" objective function using stochastic
gradient ascent. Whereas standard policy gradient methods perform one gradient
update per data s... | http://arxiv.org/pdf/1707.06347 | [
"John Schulman",
"Filip Wolski",
"Prafulla Dhariwal",
"Alec Radford",
"Oleg Klimov"
] | [
"cs.LG"
] | null | null | cs.LG | 20170720 | 20170828 | [
{
"id": "1604.06778"
},
{
"id": "1506.02438"
},
{
"id": "1602.01783"
},
{
"id": "1611.01224"
},
{
"id": "1707.06347"
},
{
"id": "1707.02286"
},
{
"id": "1606.01540"
}
] |
1707.06347 | 2 | sampling data from the policy and performing several epochs of optimization on the sampled data.
Our experiments compare the performance of various different versions of the surrogate objective, and find that the version with the clipped probability ratios performs best. We also compare
PPO to several previous algorithms... | 1707.06347 | Proximal Policy Optimization Algorithms | We propose a new family of policy gradient methods for reinforcement
learning, which alternate between sampling data through interaction with the
environment, and optimizing a "surrogate" objective function using stochastic
gradient ascent. Whereas standard policy gradient methods perform one gradient
update per data s... | http://arxiv.org/pdf/1707.06347 | [
"John Schulman",
"Filip Wolski",
"Prafulla Dhariwal",
"Alec Radford",
"Oleg Klimov"
] | [
"cs.LG"
] | null | null | cs.LG | 20170720 | 20170828 | [
{
"id": "1604.06778"
},
{
"id": "1506.02438"
},
{
"id": "1602.01783"
},
{
"id": "1611.01224"
},
{
"id": "1707.06347"
},
{
"id": "1707.02286"
},
{
"id": "1606.01540"
}
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.