Skip to main content

Yet Another Network Analysis Toolbox

Project description

Yet Another Network Analysis Toolkit.

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 more examples.

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.1.tar.gz (12.1 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.1-py3-none-any.whl (20.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: yanat-0.1.1.tar.gz
  • Upload date:
  • Size: 12.1 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.1.tar.gz
Algorithm Hash digest
SHA256 e99201da674f8aed2bc8d26bde416b192c74742cb1f65947ac1bb9d210374536
MD5 add9cf6c362e4ebc3f0fb73cd6acaf98
BLAKE2b-256 5ce9345a8ec0e912dd93d05874a2eef6749fcf2e3d1ea5181e651b98e65d957c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yanat-0.1.1.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.1-py3-none-any.whl.

File metadata

  • Download URL: yanat-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 20.3 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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ea43b36d47af320de0e4c1e1df682233df71361cb35e17edb96a66e376c3c153
MD5 28607b88f18ed31010a901e2c663e342
BLAKE2b-256 28ca6ae5bd28031112f3d5d02b77df8d304fd5a18d125aef974fd9a6d77c8507

See more details on using hashes here.

Provenance

The following attestation bundles were made for yanat-0.1.1-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