Blue-Loo Fitness Model
Definition
A Fitness Model refers to a random network where weights are assigned to each node, and the probability of links being formed is varied according to these weights.
Algorithm
Input
A null graph with nodes, denoted as , is given.
Chung-Lu model 1
Step 1.
A degree sequence , which satisfies , is generated. Here, each node is assigned a weight .
Step 2. Bernoulli Trials
for
if then
With probability , link is added to the network as follows:
Output
A random network with an expected degree of nodes is obtained.
Galloskelli-Lofredo model 2
Step 1.
Given a parameter and considering the GDP for each country , the normalized relative GDPs are defined as the fitness.
Step 2. Bernoulli Trials
for
if then
With probability , link is added to the network as follows:
Output
A scale-free network is obtained.
Caldarelli model 3
Step 1.
Given a threshold function dependent on , sample from an exponential distribution . A weight is then assigned to each node .
Step 2.
A matrix is generated as follows for the Heaviside step function : This matrix becomes one where if the sum of fitnesses of two nodes exceeds the threshold , it is ; otherwise, it is .
Step 3.
A graph with adjacency matrix is generated.
Output
A scale-free network with a degree distribution following Pareto distribution is obtained.
Description
The fitness model has been developed primarily to generate scale-free networks, as introduced, by leveraging the fact that nodes with higher weights (influence) are more likely to be connected to many links, thereby inducing a Heavy Tail of Pareto distribution. Hence, there’s no need to be overly fixated on terms like weight or fitness.
The Gilbert model, which gives a constant probability of for links between every pair of nodes, can be seen as a generalization of the Chung-Lu and Galloskelli-Lofredo models.
Chung, Lu. (2002). Connected components in random graphs with given expected degree sequences. https://doi.org/10.1007/PL00012580 ↩︎
Garlaschelli, Loffredo. (2004). Fitness-Dependent Topological Properties of the World Trade Web. https://doi.org/10.1103/PhysRevLett.93.188701 ↩︎
Caldarelli. (2002). Scale-Free Networks from Varying Vertex Intrinsic Fitness. https://doi.org/10.1103/PhysRevLett.89.258702 ↩︎