欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LFR benchmark 操作步骤

程序员文章站 2022-04-19 16:13:48
...

先奉上资源

链接:https://pan.baidu.com/s/1Mm_UwUAhM0ofKXcFbti0YA 
提取码:hvp8 
复制这段内容后打开百度网盘手机App,操作更方便哦

运行操作

在解压后的文件下找到 /benchmark/Debug 文件夹, 在该文件下运行命令行程序(按住shift然后右键),之后即可输入命令。

参数解释

benchmark [FLAG] [P] [FLAG] [P]
-N        number of nodes   节点数 
-k        average degree     平均度(大多数大规模真实社会网络的平均值在10左右)
-maxk     maximum degree   最大度 数
-mu       mixing parameter    社团内部链接强度系数,值越大,链接越弱
-t1       minus exponent for the degree sequence    节点度的幂律分布指数
-t2       minus exponent for the community size distribution    社团尺寸的幂律分布指数
-minc     minimum for the community sizes    社团尺寸大小下限
-maxc     maximum for the community sizes   社团尺寸大小上限
-on       number of overlapping nodes      重叠节点占比
-om       number of memberships of the overlapping nodes   重叠节点的社团隶属数
-C        average clustering coefficient   平均聚类系数

代码样例

# 生成样例基准网络
benchmark -N 1000 -k 15 -maxk 50 -mu 0.1 -minc 20 -maxc 50

运行结果如下图
LFR benchmark 操作步骤
得到四个文件:
分别是社团编号文件、网络邻接列表文件、网络特征统计文件和时间种子数。

LFR benchmark 操作步骤