维达情绪分析(NLP),PHP,法语
这是VADER(价识别字典和情感推理器)PHP法语版本。 请访问< >以查看原始版本。 VADER是一种基于词典和规则的情感分析工具,专门针对社交媒体中表达的情感进行调整。
工作很好!
示例代码:
require_once "vadersentiment.php";
$textToTest = "La jolie Galline est belle, belle, BELLE !";
$sentimenter = new new SentimentIntensityAnalyzer();
$result = $sentimenter->getSentiment($textToTest);
print_r($result);
示例代码的输出
['neg'=> 0.0, 'neu'=> 0.254, 'pos'=> 0.746, 'compound'
2022-10-07 15:11:47
87KB
PHP
1