Update preprocess.py

This commit is contained in:
Yige XU 2018-09-15 18:13:17 +08:00 committed by GitHub
parent b3e8db74a6
commit 5c671078b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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]):