1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2024-11-20 02:18:20 +01:00

allow to set threadhold to top similarity post

This commit is contained in:
lxsang 2021-02-18 18:54:16 +01:00
parent af802822e6
commit 7eb9746dc7

View File

@ -236,7 +236,7 @@ function PostController:analyse(n)
self.analytical:delete({["="] = {["1"] = 1}})
-- get similarity and put to the table
for id, v in pairs(vectors) do
local top = cluster.top_similarity(id, vectors, n)
local top = cluster.top_similarity(id, vectors, n, 0.1)
for a, b in pairs(top) do
local record = {pid = id, sid = a, score = b}
self.analytical:create(record)