Barabasi-Albert模型,错误度指数

时间:2017-12-21 10:19:48

标签: python python-3.x graph-theory

我尝试使用Barabasi-Albert模型生成无标度网络。该模型预测了p(k)~k ^ -3之后的度分布,但是我的显示k ^ -2。

enter image description here

该算法来自Barabasi的书,网址为http://barabasi.com/networksciencebook, 这是相关段落:

Barabasi's algorithm

这是我的代码,有人可以帮我弄清楚出了什么问题吗?

import numpy as np
import matplotlib.pyplot as plt
from collections import Counter
plt.rcParams["figure.figsize"] = (15,6)

#initialize values
N = 10000
k = 2
m = int(k / 2)

#initialize matrices
adjacency = np.zeros((N,N))
degrees = np.zeros(N)

#add links
for i in range(N):
    degrees[i] = m
    for c in range(m):
        # choose a node with probability proportional to it's degree
        j = np.random.choice(N, p = degrees / (2 * m * i + m + c))
        degrees[j] += 1
        adjacency[i][j] += 1
        adjacency[j][i] += 1


def get_binned_data(labels, values, num):
    min_label, max_label = min(labels), max(labels)
    base = (max_label / min_label) ** (1 / num)
    bins = [base**i for i in range(int(np.log(max_label) / np.log(base)) + 1)]
    binned_values, binned_labels = [], []
    counter = 0
    for b in bins:
        bin_size = 0
        bin_sum = 0
        while counter < len(labels) and labels[counter] <= b:
            bin_size += values[counter]
            bin_sum += values[counter] * labels[counter]
            counter += 1
        if(bin_size):
            binned_values.append(bin_size)
            binned_labels.append(bin_sum / bin_size)
    return binned_labels, binned_values


labels, values = zip(*sorted(Counter(degrees).items(), key = lambda pair: 
pair[0]))

binned_labels, binned_values = get_binned_data(labels, values, 15)

fig, (ax1, ax2) = plt.subplots(ncols = 2, nrows = 1)
fig.suptitle('Barabasi-Albert Model',fontsize = 25)

ax1.loglog(binned_labels, binned_values, basex = 10, basey = 10, linestyle = 
'None', marker = 'o',  color = 'red')
ax1.set(xlabel = 'degree', ylabel = '# of nodes')
ax1.set_title('log-log scale (log-binned)',{'fontsize':'15'})

ax2.plot(labels, values, 'ro')
ax2.set(xlabel = 'degree', ylabel = '# of nodes')
ax2.set_title('linear scale',{'fontsize':'15'})

plt.show()

1 个答案:

答案 0 :(得分:0)

您的代码未运行(np.random.choice中的概率不总和为1)。为什么不p = degrees/np.sum(degrees)

根据Wikipedia,您需要从一些已连接的节点开始,而您从零开始。此外,您应该在内部循环之后放置degrees[i] = m以避免形成从节点i到其自身的链接。

这可能会有所帮助,但我不清楚你如何生成学位图,所以我无法对其进行验证。