CLDec 1, 2022

Learning to Select from Multiple Options

arXiv:2212.00301v38 citationsh-index: 32Has Code
AI Analysis

It addresses inefficiencies in NLP selection tasks like classification and QA, offering faster and more accurate methods, though it is incremental as it builds on existing TE approaches.

This paper tackles the limitations of pairwise textual entailment (TE) for selection problems in NLP by proposing Context-TE, which incorporates context from other options, and Parallel-TE, which speeds up inference by processing multiple options simultaneously. Experiments on three tasks show new SOTA performance, with Parallel-TE achieving k times faster inference than pairwise TE.

Many NLP tasks can be regarded as a selection problem from a set of options, such as classification tasks, multi-choice question answering, etc. Textual entailment (TE) has been shown as the state-of-the-art (SOTA) approach to dealing with those selection problems. TE treats input texts as premises (P), options as hypotheses (H), then handles the selection problem by modeling (P, H) pairwise. Two limitations: first, the pairwise modeling is unaware of other options, which is less intuitive since humans often determine the best options by comparing competing candidates; second, the inference process of pairwise TE is time-consuming, especially when the option space is large. To deal with the two issues, this work first proposes a contextualized TE model (Context-TE) by appending other k options as the context of the current (P, H) modeling. Context-TE is able to learn more reliable decision for the H since it considers various context. Second, we speed up Context-TE by coming up with Parallel-TE, which learns the decisions of multiple options simultaneously. Parallel-TE significantly improves the inference speed while keeping comparable performance with Context-TE. Our methods are evaluated on three tasks (ultra-fine entity typing, intent detection and multi-choice QA) that are typical selection problems with different sizes of options. Experiments show our models set new SOTA performance; particularly, Parallel-TE is faster than the pairwise TE by k times in inference. Our code is publicly available at https://github.com/jiangshdd/LearningToSelect.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes