From 5c671078b6a0039b8071cd9c3984184831cb8989 Mon Sep 17 00:00:00 2001 From: Yige XU Date: Sat, 15 Sep 2018 18:13:17 +0800 Subject: [PATCH] Update preprocess.py --- fastNLP/core/preprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastNLP/core/preprocess.py b/fastNLP/core/preprocess.py index e049c762..5e4122f9 100644 --- a/fastNLP/core/preprocess.py +++ b/fastNLP/core/preprocess.py @@ -239,7 +239,7 @@ class SeqLabelPreprocess(BasePreprocess): label2index: dict of {str, int} """ # In seq labeling, both word seq and label seq need to be padded to the same length in a mini-batch. - label2index = {} # DEFAULT_WORD_TO_INDEX.copy() + label2index = DEFAULT_WORD_TO_INDEX.copy() word2index = DEFAULT_WORD_TO_INDEX.copy() for example in data: for word, label in zip(example[0], example[1]):