From dd7429d6452ae6d82ef52a43ddd56228e5639f1d Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Mon, 13 Feb 2023 16:09:00 +0100 Subject: [PATCH] Remove trailing 'extractive' word from en documentation (#21594) remove trailing word --- docs/source/en/task_summary.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/en/task_summary.mdx b/docs/source/en/task_summary.mdx index 21e89e85b7..67181d2d0c 100644 --- a/docs/source/en/task_summary.mdx +++ b/docs/source/en/task_summary.mdx @@ -217,7 +217,7 @@ Question answering is another token-level task that returns an answer to a quest There are two common types of question answering: -* extractive: extractive: given a question and some context, the answer is a span of text from the context the model must extract +* extractive: given a question and some context, the answer is a span of text from the context the model must extract * abstractive: given a question and some context, the answer is generated from the context; this approach is handled by the [`Text2TextGenerationPipeline`] instead of the [`QuestionAnsweringPipeline`] shown below