Browse Source

fix bug in preprocessor: reported in issue 47

tags/v0.1.0
FengZiYjun 6 years ago
parent
commit
31eac4a795
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      fastNLP/core/preprocess.py

+ 1
- 1
fastNLP/core/preprocess.py View File

@@ -268,7 +268,7 @@ class ClassPreprocess(BasePreprocess):

for word in sent:
if word not in word2index:
word2index[word[0]] = len(word2index)
word2index[word] = len(word2index)
return word2index, label2index

def to_index(self, data):


Loading…
Cancel
Save