怎么计算句子之间的相似性?
#22
by
xgk
- opened
你现在得出的东西是句子提取出的特征,可以使用pytorch的consine相似度进行特征相似度判断。
下面是pytorch官方网站上的示例
input1 = torch.randn(100, 128)
input2 = torch.randn(100, 128)
cos = nn.CosineSimilarity(dim=1, eps=1e-6)
output = cos(input1, input2)
算余弦。
shibing624
changed discussion status to
closed