issues
search
xiaobeicn
/
text-similarity-php
通过余弦定理+分词计算文本相似度PHP版
MIT License
110
stars
55
forks
source link
php
similarity
readme
通过余弦定理+分词计算文本相似度PHP版
参考:
http://www.ruanyifeng.com/blog/2013/03/cosine_similarity.html
http://my.oschina.net/BreathL/blog/42477
Use:
<?php $obj = new TextSimilarity ($text1, $text2); echo $obj->run();