Text-Classification
Text-Classification copied to clipboard
A little bug in processing data
Hello,
I'm learning the source code of TextCNN,at ./datesets/preprocess/sentence.py
, here
for text in row[1:]: text = get_clean_text(text) s = s + text
So The last word of title and the first word of description will be a new word. I think this place should be s = s + ' ' + text;