Skip to main content

Yet Another Network Analysis Toolbox

Project description

drawing

At the moment, this bad boy containts a few network communication metrics and models at its core and a game-theoretical network generation framework at generative_game_theoric. I'll just add more stuff as I go.

Installation

Guess what, pip install yanat is all you need.

Example

See the examples folder for an example related to Game theoretic network generation.

Computing the Optimal Influence (OI) state of a given network: Step by step.

So, not to kill the vibe here but yanat was firstly designed to make computing (OI) states of networks a breeze. It then grew to include other communication models. Then it grew a bit more to include some network analysis tools. I don't know how far it keeps growing but the trickiest thing is to compute OI. The rest is really just calling one function and getting the result. Anyway, let's say you have a network called connectivity as a np.ndarray adjacency matrix. For the sake of these examples, we assume they are undirected and positively weighted. To make sure the dynamics of the network are well-behaved (stable and happy, unlike Nietzsche), we can normalize the adjacency matrix using the spectral normalization function.

from yanat import core, utils as ut
connectivity = ut.spectral_normalization(1,connectivity)

Then you need a model of local dynamics, describing how regions of the network interact with their neighbors. For now, we implemented a simple model that assumes the local dynamics are linear, i.e., the state of a node at time t+1 is a linear combination of the states of its neighbors at time t. This model is implemented in the yanat.core module as simulate_dynamical_system. You can make it nonlinear by passing (so far) either tanh or relu as the function argument. Everything is numba-compiled so it's pretty fast. For other parameters, you can specify them like:

NOISE_STRENGTH:float = 1.0 # SD of the Gaussian input noise to each node.
DELTA:float = 0.01 # Time step of the simulation.
TAU:float = 0.01 # Time constant of the local dynamics.
G:float = 0.9 # Coupling strength.
DURATION:float = 10. # Duration of the simulation.

model_params:dict = {"dt": DELTA, "timeconstant": TAU, "coupling": G, "duration": DURATION}

N_NODES:int = connectivity.shape[0] # Number of nodes in the network.
SEED:int = 11 # Random seed for reproducibility.

rng = np.random.default_rng(seed=SEED) # Random generator.
input_noise = rng.normal(0, NOISE_STRENGTH, (N_NODES, int(DURATION / DELTA)))

# Simulate the dynamics of the network. Should look very noisy of course. As long as you don't see NaNs or massive values, you're good.
dynamics = core.simulate_dynamical_system(adjacency_matrix=connectivity, input_matrix=input_noise, function=core.identity, **model_params)

Now we have the ingredients to see exactly how much nodes influence on each other. BUT we need to have a game (I will explain things better one day I swear). We already implemented a default_game in yanat.core that receives your connectivity and simulate_dynamical_system and simulates the lesioned state of the network. Everything else comes from another library we wrote called MSApy so you can check it out if you want to know more about the process. You can now put everything together and compute the OI state of the network.

game_params:dict = {"adjacency_matrix": connectivity, "input_noise": input_noise, "model_params": model_params}

oi = core.optimal_influence(n_elements=N_NODES, game=default_game, game_kwargs=game_params)

This might take literally forever if you don't think it through. The reason is that for every target node, the algorithm lesions potentially hundreds of thousands of source node combinations. This means, running the same simulations for all these constellations of nodes. To put things into perspective, for a network of 220 nodes, it took about half a billion simulations to compute OI. So my advice is to use networks with N_NODES < 100 locally (still, not laptops maybe) but above that, you should consider using a cluster. Unless you can wait for a few weeks or more leaving things running.

Computing OI state of a given network using default parameters.

If you don't really care about all those parameters and models and all, you can get going with just two lines:

default_parameters = ut.optimal_influence_default_values(connectivity)
oi = core.optimal_influence(connectivity.shape[0], game_kwargs=default_parameters)

BOOM! That's all for now.

Want to contribute?

We need more numbajitted models of dynamics. If you are good at these things, consider contributing:

  • Hopf model.
  • Kuramoto model.
  • FitzHugh-Nagumo model.
  • Wilson-Cowan model.
  • Delayed linear/nonlinear models.

We also need more network communication/analysis tools. If you are good at these things, consider contributing:

  • Navigation efficiency.

  • Diffusion efficiency.

  • Search information.

  • Shortest path algorithms.

  • Path retrieval algorithms.

And lastly, we need everything to be as fast as possible. If you are good at these things, consider contributing:

  • Parallelization of the algorithms.
  • Optimization of the algorithms.
  • GPU acceleration of the algorithms.

How to cite:

If you use yanat in your research, you can cite the repository until our paper is out. Here's an example of how to do it:

@software{YANAT,
  author = {Kayson Fakhar and Shrey Dixit},
  title = {YANAT: Yet Another Network Analysis Toolkit.},
  year = {2024},
  publisher = {GitHub},
  journal = {GitHub repository},
  howpublished = {\url{https://github.com/kuffmode/YANAT}},
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yanat-0.1.5.tar.gz (23.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

yanat-0.1.5-py3-none-any.whl (28.4 kB view details)

Uploaded Python 3

File details

Details for the file yanat-0.1.5.tar.gz.

File metadata

  • Download URL: yanat-0.1.5.tar.gz
  • Upload date:
  • Size: 23.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yanat-0.1.5.tar.gz
Algorithm Hash digest
SHA256 efeb542a5c00f28947dc5abc4a43524a4f5d88f634e871887d931f59d9b8ba3d
MD5 452a3152256f32041c4b3682d8d9c3a4
BLAKE2b-256 d90deb2986237a2d9b84ba360437a54c95f444c2f0855cacd8e482347e60cdea

See more details on using hashes here.

Provenance

The following attestation bundles were made for yanat-0.1.5.tar.gz:

Publisher: python-publish.yml on kuffmode/YANAT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yanat-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: yanat-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 28.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yanat-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 92737176d757fecacaae5b4f8e70df0a0583e23b175d40014a120a460722e755
MD5 4a45dadf940e0278db58a2731ffcb769
BLAKE2b-256 3548757b019bf292e41fecfcbfb46b3408af6d1b747ee50a9fcd30b4a87d5488

See more details on using hashes here.

Provenance

The following attestation bundles were made for yanat-0.1.5-py3-none-any.whl:

Publisher: python-publish.yml on kuffmode/YANAT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page