muchmhaliq / phpinsight
PHP(印度尼西亚语)情感分析工具
1.0.0
2023-09-21 09:18 UTC
Requires
- php: >=7.4
README
情感分析是分析数字文本以确定消息的情感倾向是正面、负面还是中性的过程。情感分析工具可以扫描此文本以自动确定作者对某个主题的态度。
安装
composer require mashmhaliq/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 #)