From 8e6450aee1648fc5a5e39a4c8bd6bca0dfbeaee3 Mon Sep 17 00:00:00 2001 From: Kai Date: Fri, 26 Feb 2021 12:18:52 +0100 Subject: [PATCH] do not display confidence column --- neat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neat.js b/neat.js index b52c66d..b925207 100644 --- a/neat.js +++ b/neat.js @@ -56,7 +56,7 @@ function setupInterface(data, file, urls) { let startIndex=0; let endIndex=displayRows; - let do_not_display = new Set(['url_id', 'left', 'right', 'top', 'bottom', 'ocrconf']); + let do_not_display = new Set(['url_id', 'left', 'right', 'top', 'bottom', 'ocrconf', 'conf']); let tagClasses = 'ner_per ner_loc ner_org ner_work ner_conf ner_evt ner_todo'; let has_changes = false;