我正在执行stanford nlp包以获得情绪结果。
这是命令:
java -cp "*" -mx5g edu.stanford.nlp.sentiment.SentimentPipeline -stdin
从用户读取并在按下时给出结果。 这里显示了它是如何处理的:
H:\Drive E\Stanford\stanfor-corenlp-full-2013~>java -cp "*" -mx1g edu.stanford.n
lp.sentiment.SentimentPipeline -stdin
Adding annotator tokenize
Adding annotator ssplit
Adding annotator parse
Loading parser from serialized file edu/stanford/nlp/models/lexparser/englishPCF
G.ser.gz ... done [4.7 sec].
Adding annotator sentiment
Reading in text from stdin.
Please enter one sentence per line.
Processing will end when EOF is reached.
this my first test for the. so I need to get the answer of new e. Any idea for this?
Negative
Again we are working on new test the insert value is the test of new creation
Neutral
Negative
和positive
是用户按回车键时显示的结果。
我的问题:
如何在执行上述命令时知道处理了哪个文件。我想修改该文件。执行此命令的目录包含一些jar
个文件。
我想用新行字符测试示例。现在,当按下enter键时,它会停止从用户读取。如何将文本作为包含换行符的参数传递。
这是源的链接。在此zip文件的extract目录中,执行了命令: