muchmhaliq/phpinsight

PHP(印度尼西亚语)情感分析工具

1.0.0 2023-09-21 09:18 UTC

This package is auto-updated.

Last update: 2024-09-30 01:52:25 UTC


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
#)