##单机版Python##社团划分——有向图的Label Propagation算法

2024-05-07 14:58

本文主要是介绍##单机版Python##社团划分——有向图的Label Propagation算法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在博文社区划分——Label Propagation中,介绍了Label Propagation社区划分算法的基本原理,基本的Label Propagation算法是针对无向图的社区划分算法。

一、基本Label Propagation算法原理

对于网络中的每一个节点,在初始阶段,Label Propagation算法对每一个节点一个唯一的标签,在每一个迭代的过程中,每一个节点根据与其相连的节点所属的标签改变自己的标签,更改的原则是选择与其相连的节点中所属标签最多的社区标签为自己的社区标签,这便是标签传播的含义。随着社区标签的不断传播,最终紧密连接的节点将有共同的标签。

其中,标签的异步更新方式如下:

                                       Cx(t)=f(Cxi1(t),,Cxim(t),Cxi(m+1)(t1),,     Cxik(t1))

Label Propagation算法的过程如下:

  • 对网络中的每一节点初始化其所属社区标签,如对于节点x,初始化其社区标签为Cx(0)=x
  • 设置代数t
  • 对于网络中的节点设置其遍历顺序和节点的集合X
  • 对于每一个节点xX,令Cx(t)=f(Cxi1(t),,Cxim(t),Cxi(m+1)(t1),,Cxik(t1))
  • 判断是否可以迭代结束,如果否,则设置t=t+1,重新遍历。

二、有向图的Label Propagation算法

1、有向图

有向图是指图中的边是带有方向的图。对于有向图,每两个节点之间的边的条数是两条,分别为流出的边和流入的边,其流出边的总数为出度,流入边的总数为入度,如下图的有向图:

这里写图片描述
(图片来自百度百科)

对于节点5,其出度为2,入度也为2。对于更多的有向图的知识,可参阅相关图论的书。

2、对于Label Propagation算法的修正

要使得Label Propagation算法能够求解有向图的社区划分,问题即变为如何将有向图转换成无向图。即如何定义有向图中两个节点之间的边的权重。对于这个问题,设计了如下的公式:

wi,j=αλi,j+βλj,i

其中wi,j表示的是节点j对于节点i的权重,λi,j表示的是节点i到节点j的权重,λj,i表示的是节点j到节点i的权重。通过参数α和参数β可以调节不同的权重比例。

通过如上的办法将有向图的Label Propagation算法转换成无向图的Label Propagation算法进行求解。

三、实验

对于如下的数据:

0   2   1
2   0   2
0   3   2
3   0   1
0   4   3
4   0   1
0   5   2
5   0   1
1   2   3
2   1   1
1   4   5
4   1   2
1   7   1
7   1   4
2   4   2
4   2   2
2   5   9
5   2   7
2   6   1
6   2   4
3   7   1
7   3   5
4   10  1
10  4   4
5   7   1
7   5   2
5   11  1
11  5   2
6   7   3
7   6   7
6   11  5
11  6   2
8   9   1
9   8   6
8   10  4
10  8   2
8   11  2
11  8   1
8   14  5
14  8   3
8   15  8
15  8   5
9   12  2
12  9   1
9   14  1
14  9   2
10  11  10
11  10  1
10  12  2
12  10  3
10  13  9
13  10  8
10  14  8
14  10  7
11  13  1
13  11  4

程序源码如下:

#####################################
# Author:zhaozhiyong
# Date:20160602
# Fun:Label Propagation
#####################################
import stringdef loadData(filePath):f = open(filePath)vector_dict = {}edge_dict_out = {}#outedge_dict_in = {}#infor line in f.readlines():lines = line.strip().split("\t")if lines[0] not in vector_dict:vector_dict[lines[0]] = string.atoi(lines[0])if lines[1] not in vector_dict:vector_dict[lines[1]] = string.atoi(lines[1])if lines[0] not in edge_dict_out:edge_list = []if len(lines) == 3:edge_list.append(lines[1] + ":" + lines[2])edge_dict_out[lines[0]] = edge_listelse:edge_list = edge_dict_out[lines[0]]if len(lines) == 3:edge_list.append(lines[1] + ":" + lines[2])edge_dict_out[lines[0]] = edge_listif lines[1] not in edge_dict_in:edge_list = []if len(lines) == 3:edge_list.append(lines[0] + ":" + lines[2])edge_dict_in[lines[1]] = edge_listelse:edge_list = edge_dict_in[lines[1]]if len(lines) == 3:edge_list.append(lines[0] + ":" + lines[2])edge_dict_in[lines[1]] = edge_listf.close()return vector_dict, edge_dict_out, edge_dict_indef get_max_community_label(vector_dict, adjacency_node_list):label_dict = {}# generate the label_dictfor node in adjacency_node_list:node_id_weight = node.strip().split(":")node_id = node_id_weight[0]node_weight = float(node_id_weight[1])if vector_dict[node_id] not in label_dict:label_dict[vector_dict[node_id]] = node_weightelse:label_dict[vector_dict[node_id]] += node_weight# find the max labelsort_list = sorted(label_dict.items(), key = lambda d: d[1], reverse=True)return sort_list[0][0]def check(vector_dict, edge_dict):#for every nodefor node in vector_dict.keys():adjacency_node_list = edge_dict[node]node_label = vector_dict[node]#suject to label_check = {}for ad_node in adjacency_node_list:node_id_weight = ad_node.strip().split(":")node_id = node_id_weight[0]node_weight = node_id_weight[1]if vector_dict[node_id] not in label_check:label_check[vector_dict[node_id]] = float(node_weight)else:label_check[vector_dict[node_id]] += float(node_weight)#print label_checksort_list = sorted(label_check.items(), key = lambda d: d[1], reverse=True)if node_label == sort_list[0][0]:continueelse:return 0return 1    def label_propagation(vector_dict, edge_dict_out, edge_dict_in):#rebuild edge_dictedge_dict = {}for node in vector_dict.iterkeys():out_list = edge_dict_out[node]in_list = edge_dict_in[node]#print "node:", node#print "out_list:", out_list#print "in_list:", in_list#print "------------------------------------------------"out_dict = {}for out_x in out_list:out_xs = out_x.strip().split(":")if out_xs[0] not in out_dict:out_dict[out_xs[0]] = float(out_xs[1])in_dict = {}for in_x in in_list:in_xs = in_x.strip().split(":")if in_xs[0] not in in_dict:in_dict[in_xs[0]] = float(in_xs[1])#print "out_dict:", out_dict#print "in_dict:", in_dictlast_list = []for x in out_dict.iterkeys():out_x = out_dict[x]in_x = 0.0if x in in_dict:in_x = in_dict.pop(x)result = out_x + 0.5 * in_xlast_list.append(x + ":" + str(result))if not in_dict:for x in in_dict.iterkeys():in_x = in_dict[x]result = 0.5 * in_xlast_list.append(x + ":" + str(result))#print "last_list:", last_listif node not in edge_dict:edge_dict[node] = last_list#initial, let every vector belongs to a communityt = 0#for every node in a random orderwhile True:if (check(vector_dict, edge_dict) == 0):t = t+1print "----------------------------------------"print "iteration: ", tfor node in vector_dict.keys():adjacency_node_list = edge_dict[node]vector_dict[node] = get_max_community_label(vector_dict, adjacency_node_list)print vector_dictelse:breakreturn vector_dictif __name__ == "__main__":vector_dict, edge_dict_out, edge_dict_in = loadData("./cd_data.txt")print vector_dictprint edge_dict_outprint edge_dict_in#print "original community: ", vector_dictvec_new = label_propagation(vector_dict, edge_dict_out, edge_dict_in)print "---------------------------------------------------------"print "the final result: "for key in vec_new.keys():print str(key) + " ---> " + str(vec_new[key])

最终的结果:

这里写图片描述

程序和数据的github地址

这篇关于##单机版Python##社团划分——有向图的Label Propagation算法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/967676

相关文章

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

Python Websockets库的使用指南

《PythonWebsockets库的使用指南》pythonwebsockets库是一个用于创建WebSocket服务器和客户端的Python库,它提供了一种简单的方式来实现实时通信,支持异步和同步... 目录一、WebSocket 简介二、python 的 websockets 库安装三、完整代码示例1.

揭秘Python Socket网络编程的7种硬核用法

《揭秘PythonSocket网络编程的7种硬核用法》Socket不仅能做聊天室,还能干一大堆硬核操作,这篇文章就带大家看看Python网络编程的7种超实用玩法,感兴趣的小伙伴可以跟随小编一起... 目录1.端口扫描器:探测开放端口2.简易 HTTP 服务器:10 秒搭个网页3.局域网游戏:多人联机对战4.

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Python使用自带的base64库进行base64编码和解码

《Python使用自带的base64库进行base64编码和解码》在Python中,处理数据的编码和解码是数据传输和存储中非常普遍的需求,其中,Base64是一种常用的编码方案,本文我将详细介绍如何使... 目录引言使用python的base64库进行编码和解码编码函数解码函数Base64编码的应用场景注意

C#如何动态创建Label,及动态label事件

《C#如何动态创建Label,及动态label事件》:本文主要介绍C#如何动态创建Label,及动态label事件,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录C#如何动态创建Label,及动态label事件第一点:switch中的生成我们的label事件接着,

Python基于wxPython和FFmpeg开发一个视频标签工具

《Python基于wxPython和FFmpeg开发一个视频标签工具》在当今数字媒体时代,视频内容的管理和标记变得越来越重要,无论是研究人员需要对实验视频进行时间点标记,还是个人用户希望对家庭视频进行... 目录引言1. 应用概述2. 技术栈分析2.1 核心库和模块2.2 wxpython作为GUI选择的优

Python如何使用__slots__实现节省内存和性能优化

《Python如何使用__slots__实现节省内存和性能优化》你有想过,一个小小的__slots__能让你的Python类内存消耗直接减半吗,没错,今天咱们要聊的就是这个让人眼前一亮的技巧,感兴趣的... 目录背景:内存吃得满满的类__slots__:你的内存管理小助手举个大概的例子:看看效果如何?1.

Python+PyQt5实现多屏幕协同播放功能

《Python+PyQt5实现多屏幕协同播放功能》在现代会议展示、数字广告、展览展示等场景中,多屏幕协同播放已成为刚需,下面我们就来看看如何利用Python和PyQt5开发一套功能强大的跨屏播控系统吧... 目录一、项目概述:突破传统播放限制二、核心技术解析2.1 多屏管理机制2.2 播放引擎设计2.3 专

Python中随机休眠技术原理与应用详解

《Python中随机休眠技术原理与应用详解》在编程中,让程序暂停执行特定时间是常见需求,当需要引入不确定性时,随机休眠就成为关键技巧,下面我们就来看看Python中随机休眠技术的具体实现与应用吧... 目录引言一、实现原理与基础方法1.1 核心函数解析1.2 基础实现模板1.3 整数版实现二、典型应用场景2