Text-Classification icon indicating copy to clipboard operation
Text-Classification copied to clipboard

A little bug in processing data

Open menjiantong opened this issue 1 year ago • 1 comments

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;

menjiantong avatar Jun 09 '23 15:06 menjiantong