word2vec产生的词向量中出现空格和回车,会导致ValueError: invalid vector on line3 (is this really the text format)

解决方案: 空格改/s, 回车改/n

debug经验: 1. valueerror一般为输入问题,确保训练数据格式正确的情况下,只能是生成的w2v词向量出现问题

                      2. 保存w2v为标准.txt格式,逐行check是否存在文本编辑格式问题

 

你可能感兴趣的:(word2vec产生的词向量中出现空格和回车,会导致ValueError: invalid vector on line3 (is this really the text format))