我正在使用Sentiment Stanford NLP库来进行情绪分析。
现在我想从句子
生成一个树库输入句子:“有效但过于不温不火的传记片”
输出树库:(2(3(3有效)(2但))(1(1太热)(2传记)))
任何人都可以告诉我该怎么做吗? 谢谢大家。
答案 0 :(得分:0)
所以我不得不为SentimentPipeline修补错误。
如果您从GitHub获取最新代码并使用该版本:https://github.com/stanfordnlp/CoreNLP
你可以发出这个命令:
java -Xmx8g edu.stanford.nlp.sentiment.SentimentPipeline -file example-sentences.txt -output PENNTREES
你会得到这样的输出:
I really liked the movie.
(3 (2 I) (3 (2 really) (3 (3 (3 liked) (2 (2 the) (2 movie))) (2 .))))
I hated the movie.
(1 (2 I) (1 (1 (1 hated) (2 (2 the) (2 movie))) (2 .)))