我一直试图从stanford corenlp获取情绪值,但是在交互式shell中,情绪并未作为输出提供。
我已使用官方网站上的命令指定了注释器。
java -cp "*" -Xmx3g edu.stanford.nlp.pipeline.StanfordCoreNLP -annotators tokenize,ssplit,pos,lemma,ner,parse,dcoref, sentiment
此外,当我试图获得情绪时,那么在提供其他注释器之后,在提供之后我根本没有提供任何输出。
我在两种情况下都获得了交互式shell。喜欢 - NLP> 但是,没有任何情绪的迹象 - 积极或消极。
另外,如果我们使用sentimentPipeline而不是nlp.pipeline。它给出了情绪。有什么方法可以通过交互式shell获得,或者如果可能的话,我们有什么方法可以使用情感管道与pexpect?