cnvm


Namecnvm JSON
Version 0.2.0 PyPI version JSON
download
home_pagehttps://github.com/lueckem/cnvm
SummaryContinuous-time Noisy Voter Model (CNVM) of social dynamics.
upload_time2023-07-03 14:20:37
maintainer
docs_urlNone
authorMarvin Lücke
requires_python>=3.9,<3.12
licenseGPL-3.0-or-later
keywords voter model social dynamics opinion dynamics statistical physics agent-based model epidemiology interacting particle system
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![build](https://github.com/lueckem/cnvm/actions/workflows/build.yml/badge.svg)](https://github.com/lueckem/cnvm/actions/workflows/build.yml)

# Continuous-time noisy voter model (CNVM)
This package provides an efficient implementation of the CNVM, which is a dynamical system consisting a network of interacting *agents*.
It can be used to simulate how opinions about certain issues develop over time within a population, or how an infectious disease spreads.
Although the interaction rules of the CNVM are quite simple, the resulting dynamics is complex and rich.
There are numerous papers studying the behavior of the CNVM or similar voter models.
In this package the simulation loop is just-in-time compiled using `numba`, which makes performance comparable with languages like C++.

## Installation
The CNVM package requires Python 3.9 or 3.10.
Install from the PyPI repository:
```
pip install cnvm
```
or get the latest version directly from GitHub:
```
pip install git+https://github.com/lueckem/cnvm
```


## About the CNVM
Let a network (undirected simple graph) of $N$ nodes be given. The nodes represent agents and the edges social interactions. 
Each node is endowed with one of $M$ discrete opinions. Thus, the system state is given by a vector $x \in \{1,\dots,M\}^N$, where $x_i$ describes the opinion of node $i$.
Each node's opinion $x_i \in \{1,\dots,M\}$ changes over time according to a continuous-time Markov chain (Markov jump process).
Given the current system state $x$, the generator matrix $Q^i$ of the continuous-time Markov chain associated with node $i$ is defined as

$$ Q^i \in \mathbb{R}^{M \times M},\quad (Q^i)_ {m,n} := r_{m,n} \frac{d_ {i,n}(x)}{(d_i)^\alpha} + \tilde{r}_ {m,n},\ m\neq n, $$

where $d_{i,n}(x)$ denotes the number of neighbors of node $i$ with opinion $n$ and $d_i$ is the degree of node $i$. The matrices $r, \tilde{r} \in \mathbb{R}^{M \times M}$ and $\alpha \in \mathbb{R}$ are model parameters.

Thus, the transition rates $(Q^i)_ {m,n}$ consist of two components.
The first component $r_{m,n} d_{i,n}(x)/ (d_i)^\alpha$ describes at which rate node $i$ gets "infected" with opinion $n$ by nodes in its neighborhood.
The second part $\tilde{r}_{m,n}$ describes transitions that are independent from the neighborhood (e.g., noise).

The parameter $\alpha$ can be used to tune the type of interaction. For $\alpha=1$ the transition rates are normalized because $d_{i,n}(x)/d_i \in [0,1]$.
The setting $\alpha=0$ however yields a linear increase of the transition rates with the number of "infected" neighbors, and is often used in epidemic modeling, e.g., the contact process or SIS model.

In the CNVM the network itself is static, i.e., the nodes and edges do not change over time.

## Basic Usage
First define the model paramaters:
```python
from cnvm import Parameters
import numpy as np
import networkx as nx

num_nodes = 100
r = np.array([[0, .8], [.2, 0]])
r_tilde = np.array([[0, .1], [.2, 0]])
network = nx.erdos_renyi_graph(n=num_nodes, p=0.1)

params = Parameters(
    num_opinions=2,
    network=network,
    r=r,
    r_tilde=r_tilde,
    alpha=1,
)
```
Then simulate the model, starting in state `x_init`:
```python
from cnvm import CNVM

x_init = np.random.randint(0, 2, num_nodes)
model = CNVM(params)
t, x = model.simulate(t_max=50, x_init=x_init)
```
The output `t` contains the time points of state jumps and `x` the system states after each jump.

A more detailed overview of the package can be found in the jupyter notebook [*examples/tutorial.ipynb*](examples/tutorial.ipynb).
Moreover, the behavior of the CNVM in the mean-field limit is discussed in [*examples/mean_field.ipynb*](examples/mean_field.ipynb).
In the notebook [*examples/SIS-model.ipynb*](examples/SIS-model.ipynb) the existence of an epidemic threshold for the SIS model in epidemiology is demonstrated.

## Implementation details

After a node switches its opinion, the system state $x$ changes and hence all the generator matrices $Q^i$ may change as well.
We apply a Gillespie-like algorithm to generate statistically correct samples of the process.
We start a Poisson clock for each possible transition and as soon as the first transition occurs we modify the generator matrices and reset all the clocks.
To do this efficiently, it is advantageous to transform the rate matrices $r$ and $\tilde{r}$ into an equivalent format consisting of base rates $r_0, \tilde{r}_0 > 0$ and probability matrices $p, \tilde{p} \in [0, 1]^{M\times M}$ such that

$$ r_{m,n} = r_0 p_ {m,n}, \quad \tilde{r}_ {m,n} = \tilde{r}_ 0 \tilde{p}_ {m,n} / M. $$

Furthermore, we define the cumulative rates

$$ \lambda := \sum_{i=1}^N r_0 d_i^{(1-\alpha)},\quad \tilde{\lambda} := N \tilde{r}_0,\quad \hat{\lambda} := \lambda + \tilde{\lambda}. $$

Then the simulation loop is given by
1. Draw time of next jump event from exponential distribution $\exp(\hat{\lambda})$. Go to 2.
2. With probability $\lambda / \hat{\lambda}$ the event is due to infection, in which case go to 3.
Else it is due to noise, go to 4.
3. Draw agent $i$ from $\{1,\dots,N\}$ according to distribution $\mathbb{P}(i = j) = r_0 d_j^{(1-\alpha)} / \lambda$. Let $m$ denote the state of agent $i$.
Draw $n$ from $\{1,\dots,M\}$ according to $\mathbb{P}(n = k) = d_{i,k}(x) / d_i$.
With probability $p_{m,n}$ agent $i$ switches to state $n$. Go back to 1.
4. Draw $i$ from $\{1,\dots,N\}$ and $n$ from $\{1,\dots,M\}$ uniformly. Let $m$ denote the state of agent $i$.
With probability $\tilde{p}_{m,n}$ agent $i$ switches to state $n$. Go back to 1.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/lueckem/cnvm",
    "name": "cnvm",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9,<3.12",
    "maintainer_email": "",
    "keywords": "voter model,social dynamics,opinion dynamics,statistical physics,agent-based model,epidemiology,interacting particle system",
    "author": "Marvin L\u00fccke",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/52/e9/be6e81ec18096a625e9e9fb58afa0cf410b10d175e5c29cc10f33510b127/cnvm-0.2.0.tar.gz",
    "platform": null,
    "description": "[![build](https://github.com/lueckem/cnvm/actions/workflows/build.yml/badge.svg)](https://github.com/lueckem/cnvm/actions/workflows/build.yml)\n\n# Continuous-time noisy voter model (CNVM)\nThis package provides an efficient implementation of the CNVM, which is a dynamical system consisting a network of interacting *agents*.\nIt can be used to simulate how opinions about certain issues develop over time within a population, or how an infectious disease spreads.\nAlthough the interaction rules of the CNVM are quite simple, the resulting dynamics is complex and rich.\nThere are numerous papers studying the behavior of the CNVM or similar voter models.\nIn this package the simulation loop is just-in-time compiled using `numba`, which makes performance comparable with languages like C++.\n\n## Installation\nThe CNVM package requires Python 3.9 or 3.10.\nInstall from the PyPI repository:\n```\npip install cnvm\n```\nor get the latest version directly from GitHub:\n```\npip install git+https://github.com/lueckem/cnvm\n```\n\n\n## About the CNVM\nLet a network (undirected simple graph) of $N$ nodes be given. The nodes represent agents and the edges social interactions. \nEach node is endowed with one of $M$ discrete opinions. Thus, the system state is given by a vector $x \\in \\{1,\\dots,M\\}^N$, where $x_i$ describes the opinion of node $i$.\nEach node's opinion $x_i \\in \\{1,\\dots,M\\}$ changes over time according to a continuous-time Markov chain (Markov jump process).\nGiven the current system state $x$, the generator matrix $Q^i$ of the continuous-time Markov chain associated with node $i$ is defined as\n\n$$ Q^i \\in \\mathbb{R}^{M \\times M},\\quad (Q^i)_ {m,n} := r_{m,n} \\frac{d_ {i,n}(x)}{(d_i)^\\alpha} + \\tilde{r}_ {m,n},\\ m\\neq n, $$\n\nwhere $d_{i,n}(x)$ denotes the number of neighbors of node $i$ with opinion $n$ and $d_i$ is the degree of node $i$. The matrices $r, \\tilde{r} \\in \\mathbb{R}^{M \\times M}$ and $\\alpha \\in \\mathbb{R}$ are model parameters.\n\nThus, the transition rates $(Q^i)_ {m,n}$ consist of two components.\nThe first component $r_{m,n} d_{i,n}(x)/ (d_i)^\\alpha$ describes at which rate node $i$ gets \"infected\" with opinion $n$ by nodes in its neighborhood.\nThe second part $\\tilde{r}_{m,n}$ describes transitions that are independent from the neighborhood (e.g., noise).\n\nThe parameter $\\alpha$ can be used to tune the type of interaction. For $\\alpha=1$ the transition rates are normalized because $d_{i,n}(x)/d_i \\in [0,1]$.\nThe setting $\\alpha=0$ however yields a linear increase of the transition rates with the number of \"infected\" neighbors, and is often used in epidemic modeling, e.g., the contact process or SIS model.\n\nIn the CNVM the network itself is static, i.e., the nodes and edges do not change over time.\n\n## Basic Usage\nFirst define the model paramaters:\n```python\nfrom cnvm import Parameters\nimport numpy as np\nimport networkx as nx\n\nnum_nodes = 100\nr = np.array([[0, .8], [.2, 0]])\nr_tilde = np.array([[0, .1], [.2, 0]])\nnetwork = nx.erdos_renyi_graph(n=num_nodes, p=0.1)\n\nparams = Parameters(\n    num_opinions=2,\n    network=network,\n    r=r,\n    r_tilde=r_tilde,\n    alpha=1,\n)\n```\nThen simulate the model, starting in state `x_init`:\n```python\nfrom cnvm import CNVM\n\nx_init = np.random.randint(0, 2, num_nodes)\nmodel = CNVM(params)\nt, x = model.simulate(t_max=50, x_init=x_init)\n```\nThe output `t` contains the time points of state jumps and `x` the system states after each jump.\n\nA more detailed overview of the package can be found in the jupyter notebook [*examples/tutorial.ipynb*](examples/tutorial.ipynb).\nMoreover, the behavior of the CNVM in the mean-field limit is discussed in [*examples/mean_field.ipynb*](examples/mean_field.ipynb).\nIn the notebook [*examples/SIS-model.ipynb*](examples/SIS-model.ipynb) the existence of an epidemic threshold for the SIS model in epidemiology is demonstrated.\n\n## Implementation details\n\nAfter a node switches its opinion, the system state $x$ changes and hence all the generator matrices $Q^i$ may change as well.\nWe apply a Gillespie-like algorithm to generate statistically correct samples of the process.\nWe start a Poisson clock for each possible transition and as soon as the first transition occurs we modify the generator matrices and reset all the clocks.\nTo do this efficiently, it is advantageous to transform the rate matrices $r$ and $\\tilde{r}$ into an equivalent format consisting of base rates $r_0, \\tilde{r}_0 > 0$ and probability matrices $p, \\tilde{p} \\in [0, 1]^{M\\times M}$ such that\n\n$$ r_{m,n} = r_0 p_ {m,n}, \\quad \\tilde{r}_ {m,n} = \\tilde{r}_ 0 \\tilde{p}_ {m,n} / M. $$\n\nFurthermore, we define the cumulative rates\n\n$$ \\lambda := \\sum_{i=1}^N r_0 d_i^{(1-\\alpha)},\\quad \\tilde{\\lambda} := N \\tilde{r}_0,\\quad \\hat{\\lambda} := \\lambda + \\tilde{\\lambda}. $$\n\nThen the simulation loop is given by\n1. Draw time of next jump event from exponential distribution $\\exp(\\hat{\\lambda})$. Go to 2.\n2. With probability $\\lambda / \\hat{\\lambda}$ the event is due to infection, in which case go to 3.\nElse it is due to noise, go to 4.\n3. Draw agent $i$ from $\\{1,\\dots,N\\}$ according to distribution $\\mathbb{P}(i = j) = r_0 d_j^{(1-\\alpha)} / \\lambda$. Let $m$ denote the state of agent $i$.\nDraw $n$ from $\\{1,\\dots,M\\}$ according to $\\mathbb{P}(n = k) = d_{i,k}(x) / d_i$.\nWith probability $p_{m,n}$ agent $i$ switches to state $n$. Go back to 1.\n4. Draw $i$ from $\\{1,\\dots,N\\}$ and $n$ from $\\{1,\\dots,M\\}$ uniformly. Let $m$ denote the state of agent $i$.\nWith probability $\\tilde{p}_{m,n}$ agent $i$ switches to state $n$. Go back to 1.\n",
    "bugtrack_url": null,
    "license": "GPL-3.0-or-later",
    "summary": "Continuous-time Noisy Voter Model (CNVM) of social dynamics.",
    "version": "0.2.0",
    "project_urls": {
        "Homepage": "https://github.com/lueckem/cnvm",
        "Repository": "https://github.com/lueckem/cnvm"
    },
    "split_keywords": [
        "voter model",
        "social dynamics",
        "opinion dynamics",
        "statistical physics",
        "agent-based model",
        "epidemiology",
        "interacting particle system"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d651cbc72b5f71bc2028570e7d4bed7df2b339bf76e5cdbe2522a4dfebe37aed",
                "md5": "6ce47c1b1a509cde6b61b965ce5fc625",
                "sha256": "4a8f14743311a4a646e82a5c50759334e87a66d6e946073d1d06dfee864d27d3"
            },
            "downloads": -1,
            "filename": "cnvm-0.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6ce47c1b1a509cde6b61b965ce5fc625",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9,<3.12",
            "size": 28866,
            "upload_time": "2023-07-03T14:20:36",
            "upload_time_iso_8601": "2023-07-03T14:20:36.314658Z",
            "url": "https://files.pythonhosted.org/packages/d6/51/cbc72b5f71bc2028570e7d4bed7df2b339bf76e5cdbe2522a4dfebe37aed/cnvm-0.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52e9be6e81ec18096a625e9e9fb58afa0cf410b10d175e5c29cc10f33510b127",
                "md5": "53a2c74d73dbbfb4b11e1c3c120bf46e",
                "sha256": "56160ebfd7e2ddaeb46b7cce223b6b1e9f1291677725325410918386421313e6"
            },
            "downloads": -1,
            "filename": "cnvm-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "53a2c74d73dbbfb4b11e1c3c120bf46e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9,<3.12",
            "size": 26531,
            "upload_time": "2023-07-03T14:20:37",
            "upload_time_iso_8601": "2023-07-03T14:20:37.531540Z",
            "url": "https://files.pythonhosted.org/packages/52/e9/be6e81ec18096a625e9e9fb58afa0cf410b10d175e5c29cc10f33510b127/cnvm-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-03 14:20:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lueckem",
    "github_project": "cnvm",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cnvm"
}
        
Elapsed time: 0.08201s