使用 Python 以句子为节点的有向图
Posted
技术标签:
【中文标题】使用 Python 以句子为节点的有向图【英文标题】:Directed Graph with sentences as node usnig Python 【发布时间】:2017-09-24 19:26:12 【问题描述】:我想在我的项目中实现对多个句子进行排名的流行度功能。 我想知道如何实现一个有向图,每个节点代表一个句子,如果句子之间的余弦相似度超过阈值,则它们之间存在一条边。
【问题讨论】:
【参考方案1】:下面是一段代码,它将绘制具有 n 个节点的图形,其中 n 是列表中提供的字符串的数量。边以 (i,j) 格式提供,其中 i,j 是与字符串列表中的索引相对应的节点编号。在此示例中,(0,2) 将对应于“Some”和“Strings”之间的一条边。
由于您希望根据某个阈值连接节点,因此您的边缘列表将对应于:[[(x,y) for y in range(len(words)) if similarity(words[x],words[y]) < threshold][0] for x in range(len(words))]
其中similarity()
是您定义的用于检查相似性的函数。
from igraph import *
words = ['Some', 'Random', 'Strings','Okay'] #Whatever your strings would be
n_nodes = len(words) #Would be equal to the amount of words you have
g = Graph(directed=True)
layout = g.layout('kk')
edges = [(n,n+1) for n in range(n_nodes-1)] #Connects each node to the next, replace this with your own adjacency tuples
g.add_vertices(n_nodes) #Add the nodes
g.add_edges(edges) #Add the edges
plot(g, bbox=(500,500),margin=30, vertex_label = words)
祝你好运!
【讨论】:
以上是关于使用 Python 以句子为节点的有向图的主要内容,如果未能解决你的问题,请参考以下文章
networkx有向图或二叉树的root根节点,Python