对于我正在从事的项目,我想进行情感分析,以确定某个特定文本字符串(以荷兰语编写)的正面/负面程度。经过研究后,我选择了Pattern,主要是因为它支持荷兰语。
我正在使用python版本2.7,并使用
安装了该软件包pip安装模式
首先,我尝试了以下代码:
from pattern.en import pluralize, singularize
print pluralize('child')
print singularize('wolves')
结果:
children
wolf
这很好用,接下来我尝试分析:
from pattern.en import sentiment
print sentiment(
"The movie attempts to be surreal by incorporating various time paradoxes, it was really good")
结果:
(0.0, 0.0)
这没有按预期工作,我的情绪有误吗?还是包装本身有问题?似乎只有这种情绪没有用。