ricasolucoes / phpinsight
PHP情感分析工具
v3.0.0
2020-09-19 07:08 UTC
Requires
- php: >=7.0
This package is not auto-updated.
Last update: 2024-09-30 01:57:26 UTC
README
安装
composer require ricasolucoes/php-insight
使用
use PHPInsight\Sentiment; #.... $analyzer = new Sentiment(); $analyzer->categorise($string); #return text category, positive, negative or neutral $scores = $analyzer->score($string); #Returns text scores, for example #( # [neg] => 0.865 # [neu] => 0.108 # [pos] => 0.027 #)
演示
运行
composer demo
生成字典
运行
composer generate-dictionaries
测试
在项目目录中安装并运行 phpunit