KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
ChineseTextSimilarity
★ 11
Open GitHub ↗
中文文本相似度计算
Download README (.md)
Explore Similar Repositories
promised-timeout
:
For limiting the time to resolve a promise.
Scripts-and-Mods
:
Scripts and mods for BBS software
XiaoxiazhihuWx
:
Xiaoxiazhihu (知乎日报) 微信小程序 demo。
censorship-in-south-korea
:
No description available.
pass-autotype
:
Automatically type the username and password into the current (browser) window, retrieved from the pass password store.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ChineseTextSimilarity
?
Download (.md)
# 基于字的中文文本相似度计算 这里基于字的文本相似度计算实现了Jaccard相似度计算和余弦定理相似度计算 参考页面 ------- - 页面一:http://blog.csdn.net/inrgihc/article/details/52739959 - 页面二:http://blog.csdn.net/inrgihc/article/details/52739935 编译环境 ------- - 操作系统:linux - C++版本:gcc/g++ >=4.4 - Java版本:JDK >=1.6 C++版本编译过程 ------------- - Jacard 算法相似度计算 ``` cd JaccardSimilarity cd cplusplus make all bin/debug/textsimilarity ``` - 余弦定理算法相似度计算 ``` cd CosineSimilarity cd cplusplus make all bin/debug/textsimilarity ``` Java版本编译过程 -------------- - Jacard 算法相似度计算 ``` cd JaccardSimilarity cd java make build make run ``` - 余弦定理算法相似度计算 ``` cd CosineSimilarity cd java make build make run ```