我在http://nlp.stanford.edu/~socherr/stanfordSentimentTreebank.zip下载了斯坦福自然语言处理情感分析的数据集
斯坦福自然语言文字情感分析的网站是http://nlp.stanford.edu/sentiment/code.html
在数据集中,有一个包含11855个句子的列表,还有短语的情感值,但我找不到每个句子的真实情感分析。
例如,句子Offers that rare combination of entertainment and education .
。这句话真正的情感价值是什么?
发布于 2015-12-11 19:46:40
您应该可以从以下位置获得文件trainDevTestTrees_PTB.zip:http://nlp.stanford.edu/sentiment/code.html
它是通过"Train,Dev,Test Splits in PTB Tree Format“链接到的文件。
它的情感值为4。树中最左边的数字表示整个句子的值。
树的形式是(score (子树)(子树))。
叶子的形式是(得分标记)。
https://stackoverflow.com/questions/34181164
复制相似问题