我试图在Windows上运行斯坦福的分类器。
完成情绪分类器:
https://nlp.stanford.edu/wiki/Software/Classifier/Sentiment
我已下载数据集,并已安装iconv
,head
,tail
http://gnuwin32.sourceforge.net/packages/coreutils.htm
让Perl从ActivePerl运行。
但是,说明中给出的Perl命令在Windows上不起作用。
perl -ne 'print "neg\t" . $_' < rt-polarity.neg.utf8 > rt-polarity.neg.utf8.tsv
给出错误:
在-e第1行的EOF之前的任何地方找不到字符串终结符。
我猜测在Windows使用和Unix之间使用撇号char有些不同。
我应该在Windows中使用什么来将此文件与Perl一起转换为.tsv?