A fast network diffusion library
Project description
CyNetDiff
- Documentation: https://eliotwrobson.github.io/CyNetDiff/
Network diffusion processes aim to model the spread of trends through social networks, represented using graphs. Experimental work with these models usually involves simulating these processes many times over large graphs, which can be computationally very expensive. To address this, CyNetDiff is a Cython module implementing the independent cascade and linear threshold models. Development has been focused on performance, while still giving an intuitive, high-level interface to assist in research tasks. To learn more about these specific models, read this book chapter or the preliminaries page in the documentation.
Quick Start
Installation
pip install cynetdiff
Note: The installation includes a build step that requires having a C++ complier installed.
Basic Usage
We can run models over graphs we define, using pre-defined weighting schemes. Here is a simple example:
import random
import networkx as nx
from cynetdiff.utils import networkx_to_ic_model
# Randomly generate the graph
n = 1_000
p = 0.05
graph = nx.fast_gnp_random_graph(n, p)
# Randomly choose seed nodes
k = 10
nodes = list(graph.nodes)
seeds = random.sample(nodes, k)
# Set the activation probability uniformly and set seeds
model, _ = networkx_to_ic_model(graph, activation_prob=0.2)
model.set_seeds(seeds)
# Run a single diffusion process until completion
model.advance_until_completion()
# Get the number of nodes activated
model.get_num_activated_nodes()
The output from the last line is the number of nodes activated in a single
simulation of the model. To get the average number of activated nodes
across n_sim = 1_000
simulations, we can replace the last line in the
above with the following:
n_sim = 1_000
total = 0.0
for _ in range(n_sim):
# Resetting the model doesn't change the initial seed set used.
model.reset_model()
model.advance_until_completion()
total += model.get_num_activated_nodes()
avg = total / n_sim
Advanced Usage
See the documentation.
Citation
If you use this code in your research, please use the following citation:
@article{DBLP:journals/pvldb/RobsonRU24,
author = {Eilot W. Robson and
Dhemath Reddy and
Abhishek Kumar Umrawal},
title = {CyNetDiff: {A} Python Library for Accelerated Implementation of Network
Diffusion Models},
journal = {Proc. {VLDB} Endow.},
volume = {17},
number = {12},
pages = {4409--4412},
year = {2024},
url = {https://www.vldb.org/pvldb/vol17/p4409-umrawal.pdf},
timestamp = {Thu, 19 Sep 2024 13:09:38 +0200},
biburl = {https://dblp.org/rec/journals/pvldb/RobsonRU24.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
Project Status
This project is still considered in a beta stage of development. As such, the API could still change to facilitate easier community adoption.
All feedback is greatly appreciated!
Contributing
Contributions are always welcome! Take a look at the contributing guide.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cynetdiff-0.1.15.tar.gz
.
File metadata
- Download URL: cynetdiff-0.1.15.tar.gz
- Upload date:
- Size: 1.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.11.0 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f09fd5d0f425af02db97f1c1617ec9fc2c71f1f3e1c96bde51b94707448adc1e |
|
MD5 | 408dce877eb47b5219e343d50eb8f6d0 |
|
BLAKE2b-256 | 3185de3f3deeababed3c2dbf5518dccdbe11b4690dfe3c3b689e3646e1036c9d |
File details
Details for the file cynetdiff-0.1.15-cp311-cp311-manylinux_2_31_x86_64.whl
.
File metadata
- Download URL: cynetdiff-0.1.15-cp311-cp311-manylinux_2_31_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.31+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.11.0 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 470b9ccf6409abbf8bb667b50eaf2f98c286bf9a8c0bcfe918522ca8e7763b06 |
|
MD5 | 223a151efa39c979541e3b1619d0a2c4 |
|
BLAKE2b-256 | e143491a85a40f9324a612f5ad1a8721f7a9b49dfc8c05e1260bda33a3155cdd |