💾 Archived View for gemini.onedimension.net › thought › gene-inheritance.gmi captured on 2023-05-24 at 17:54:56. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2021-12-17)
-=-=-=-=-=-=-
I’m trying to work out how exactly to generate unique visuals for each node in the network[1]. I’d like this method to include some notion of inheritance, where the symbols of highly-connected nodes inherit from their connections. Here’s what I’m thinking so far.
Each node (thought) in the network can be connected to other nodes through forward and backlinks. Minus the links’ directionality, a simple graph might look like this:
The first step is forming communities of nodes. There are a number of algorithms to do this, but for now I’m using greedy_modularity_communities from networkx[2]. Running it, we get a few emergent communities:
Next, within each community we can calculate each node’s degree centrality, which is the percentage of the overall number of nodes in the graph the node is attached to. From running this calculation the most connected nodes in each community, or community leaders emerge:
These community leader nodes connect to a number of member nodes within (and potentially outside) their communities. The next objective is to actually generate the individual symbols for each node. The idea here is to create symbols whose structure derives from the node’s connections; each node’s final symbol will include a number of influences from other members of the community.
To begin the generation process, let’s visit each node and generate a unique shape. So we might define a a function that takes in the immutable attributes of the node and produces a simple shape. It’s deterministic: the same node should always produce the same simple shape. Let’s call this unique shape the node’s gene.
We’ve created genes for each node in the community:
Now we begin a process of expression: forming the symbols through gene inheritance. We’ll visit each node in descending order of degree centrality. When we visit each node, we’ll collect the genes of each of the nodes it connects to that have a higher degree centrality than the current node. To illustrate, let’s begin at the community leader—A1:
Since there are no nodes that have a higher degree centrality than it, the gene is purely expressed and we get the same symbol out as we started with:
Now we move to the member of the community with the second highest degree centrality, A2:
It has connections to members of community A as well as members of community B. Also, notice that the genes for community B have been generated differently—each community might have its own random seed for the generation function so all members start out with similar genetic characteristics. In this case community B is a bit blobbier than A.
Back to calculating the expression of A2. Per the algorithm, we’ll collect the genes of all nodes that connect to A2 with higher degree centrality. In this case, the first sweep of the algorithm set the expression of A1 and B1, meaning both of these nodes have higher degree centrality than A2. So we’ll pull the genes from these two nodes and incorporate their characteristics into A2’s characteristics. The amount of influence each connected node’s genes have on A2 is dependent on the node’s relative degree centrality. In this case, the influence of A1 was stronger than B1:
Now we have A2’s expression: an amalgamation of genes from itself and its connected neighbors with higher degree centrality.
Next, we move on to the node with third lowest degree centrality, B2. The process repeats: A2 and B1 have higher degree centrality than B2, so their genes are mixed in when calculating B2’s expression:
The final point to make here is that when calculating expression, the genes of the connected nodes are used, not the final expression. In this case B2 pulled in the genes of A2 (a triangle) and not A2’s expression (a triangle, diamond, and blob). It might be possible to use the expression, but that’d get really complicated really quick and I worry the way that nodes inherit from one another would get a bit muddled.
That’s the gist. There’s obviously a lot I need to figure out around those aforementioned node → symbol generation functions, but I think something like this will serve as a decent first start for the inheritance part of things.
Originally posted here[3].
Last updated Sun Nov 07 2021 in Berkeley, CA
1: /thought/one-dimension-network.gmi
3: https://futureland.tv/christian/entry/118937