python代码如何实现余弦相似性计算

作者:郭雪原 时间:2021-08-15 03:40:04 

这篇文章主要介绍了python代码如何实现余弦相似性计算,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

A:西米喜欢健身

B:超超不爱健身,喜欢打游戏

step1:分词

A:西米/喜欢/健身

B:超超/不/喜欢/健身,喜欢/打/游戏

step2:列出两个句子的并集

西米/喜欢/健身/超超/不/打/游戏

step3:计算词频向量

A:[1,1,1,0,0,0,0]

B:[0,1,1,1,1,1,1]

step4:计算余弦值

python代码如何实现余弦相似性计算

余弦值越大,证明夹角越小,两个向量越相似。

step5:python代码实现


import jieba
import jieba.analyse

def words2vec(words1=None, words2=None):
 v1 = []
 v2 = []
 tag1 = jieba.analyse.extract_tags(words1, withWeight=True)
 tag2 = jieba.analyse.extract_tags(words2, withWeight=True)
 tag_dict1 = {i[0]: i[1] for i in tag1}
 tag_dict2 = {i[0]: i[1] for i in tag2}
 merged_tag = set(tag_dict1.keys()) | set(tag_dict2.keys())
 for i in merged_tag:
   if i in tag_dict1:
     v1.append(tag_dict1[i])
   else:
     v1.append(0)
   if i in tag_dict2:
     v2.append(tag_dict2[i])
   else:
     v2.append(0)
 return v1, v2

def cosine_similarity(vector1, vector2):
 dot_product = 0.0
 normA = 0.0
 normB = 0.0
 for a, b in zip(vector1, vector2):
   dot_product += a * b
   normA += a ** 2
   normB += b ** 2
 if normA == 0.0 or normB == 0.0:
   return 0
 else:
   return round(dot_product / ((normA**0.5)*(normB**0.5)) * 100, 2)

def cosine(str1, str2):
 vec1, vec2 = words2vec(str1, str2)
 return cosine_similarity(vec1, vec2)

print(cosine('阿克苏苹果', '阿克苏苹果'))

来源:https://www.cnblogs.com/guoxueyuan/p/7779239.html

标签:python,余弦,相似性
0
投稿

猜你喜欢

  • 20个优秀网站助你征服CSS[译]

    2008-09-21 13:21:00
  • 来看看如何防止采集

    2007-08-19 20:11:00
  • ASP技巧:ASP中三个常用语句的使用技巧

    2008-10-16 10:56:00
  • 使用access数据库时可能用到的数据转换

    2008-09-10 12:49:00
  • 戴尔是如何设计新官网首页的

    2008-07-08 19:02:00
  • 如何从SQL数据库中调用图片?

    2009-11-15 19:59:00
  • 互联网产品的用户体验看着“很美”

    2009-07-07 12:04:00
  • php strftime函数的详细用法

    2023-06-07 19:09:37
  • centos7利用yum安装lnmp的教程(linux+nginx+php7.1+mysql5.7)

    2023-11-14 11:40:18
  • php中关于普通表单多文件上传的处理方法

    2023-11-14 20:21:21
  • 利用golang的字符串解决leetcode翻转字符串里的单词

    2023-07-17 16:36:21
  • SQL查询入门(上篇) 推荐收藏

    2011-09-30 11:47:11
  • FSO中的SubFolders 属性介绍

    2008-01-05 13:57:00
  • (X)HTML的文档结构

    2008-06-30 12:25:00
  • Python+OpenCV之图像轮廓详解

    2023-08-10 18:59:42
  • 通过定位控制信息列表下往上的增加

    2008-06-30 14:27:00
  • Doctype之谜

    2009-07-22 20:48:00
  • xmlhttp中运行getResponseHeader出错,提示:The requested header was not found

    2010-03-27 21:47:00
  • go语言数据结构之前缀树Trie

    2023-08-05 18:15:50
  • 解析PHP观察者模式Observer

    2023-07-08 13:38:58
  • asp之家 网络编程 m.aspxhome.com