文件名称:go-rate:Reddit使用的简单评分算法
文件大小:43KB
文件格式:ZIP
更新时间:2024-02-23 08:54:29
go algorithm reddit wilson-score hot-ranking
排名算法 安装 $ go get github.com/alextanhongpin/go-rate 跑 func main () { upvotes := 1000 downvotes := 10 score := rate . Wilson ( upvotes , downvotes ) // or createdAt := time . Now () score := rate . Hot ( upvotes , downvotes , createdAt ) } 按Wilson-Score间隔排序 Reddit评论排名使用Wilson-Score区间 Wilson-Score时间间隔公式显示如下: p-hat是赞成票占总数的分数 n是赞成和反对的总数 这是用go编写的算法的示例: func Wilson ( upvotes , downvotes int64 ) float64 { n := float64 ( upvotes + downvotes ) // if n == 0.0 { return 0 } will return false
【文件预览】:
go-rate-master
----main.py(596B)
----index.js(535B)
----rate_test.go(356B)
----assets()
--------wilson-score-interval.png(3KB)
--------hot.png(36KB)
----rate.go(2KB)
----.gitignore(7B)
----README.md(5KB)