From ccc4bb05bce07e3e04e1e905bed3f7831ed4a669 Mon Sep 17 00:00:00 2001 From: Harsh kathiriya Date: Mon, 13 Mar 2023 15:32:00 -0400 Subject: [PATCH] Added missing r-oxygen param include_all_confidence_scores In nlp_ner_dl_pretrained function, include_all_confidence_scores parameter is missing in the documentation. When I checked the code for it, it's actually missing from the documentation param. Added it here to fix it. --- R/ner-dl.R | 1 + 1 file changed, 1 insertion(+) diff --git a/R/ner-dl.R b/R/ner-dl.R index d37aff9..9eabb0c 100644 --- a/R/ner-dl.R +++ b/R/ner-dl.R @@ -221,6 +221,7 @@ new_nlp_ner_dl_model <- function(jobj) { #' @template roxlate-pretrained-params #' @template roxlate-inputs-output-params #' @param include_confidence whether to include confidence values +#' @param include_all_confidence_scores whether to include all confidence scores in annotation metadata or just score of the predicted tag (boolean) #' @export nlp_ner_dl_pretrained <- function(sc, input_cols, output_col, include_confidence = NULL, include_all_confidence_scores = NULL, name = NULL, lang = NULL, remote_loc = NULL) {