Skip to main content

An implementation of Stochastic Bloc model and Latent Block model efficient with sparse matrices

Project description

Getting started with SparseBM

SparseBM is a python module for handling sparse graphs with Block Models. The module is an implementation of the variational inference algorithm for the Stochastic Block Model (SBM) and the Latent Block Model (LBM) for sparse graphs, which leverages the sparsity of edges to scale to very large numbers of nodes. The module can use Cupy to take advantage of the hardware acceleration provided by graphics processing units (GPU).

Installing

The SparseBM module is distributed through the PyPI repository and the documentation is available here.

With GPU acceleration (recommended if GPUs are available)

This option is recommended if GPUs are available to speedup computation.

With the package installer pip:

pip3 install sparsebm[gpu]

The Cupy module will be installed as a dependency.

Alternatively Cupy can be installed separately, and will be used by sparsebm if available.

pip3 install sparsebm
pip3 install cupy

Without GPU acceleration

Without GPU acceleration, only CPUs are used. The infererence process still uses sparsity, but no GPU linear algebra operations.

pip3 install sparsebm

For users who do not have GPU, we recommend the free serverless Jupyter notebook environment provided by Google Colab where the Cupy module is already installed and ready to be used with a GPU.

Example with the Stochastic Block Model

  • Generate a synthetic graph for analysis with SBM:

    from sparsebm import generate_SBM_dataset
    
    dataset = generate_SBM_dataset(symmetric=True)
    
  • Infer with the Bernoulli Stochastic Bloc Model:

    from sparsebm import SBM
    
    # A number of classes must be specified. Otherwise see model selection.
    model = SBM(dataset.clusters)
    model.fit(dataset.data, symmetric=True)
    print("Labels:", model.labels)
    
  • Compute performance:

    from sparsebm.utils import ARI
    ari = ARI(dataset.labels, model.labels)
    print("Adjusted Rand index is {:.2f}".format(ari))
    

Example with the Latent Block Model

  • Generate a synthetic graph for analysis with LBM:

    from sparsebm import generate_LBM_dataset
    
    dataset = generate_LBM_dataset()
    
  • Use the Bernoulli Latent Bloc Model:

    from sparsebm import LBM
    
    # A number of classes must be specified. Otherwise see model selection.
    model = LBM(
        dataset.row_clusters,
        dataset.column_clusters,
        n_init_total_run=1,
    )
    model.fit(dataset.data)
    print("Row Labels:", model.row_labels)
    print("Column Labels:", model.column_labels)
    
  • Compute performance:

    from sparsebm.utils import CARI
    cari = CARI(
        dataset.row_labels,
        dataset.column_labels,
        model.row_labels,
        model.column_labels,
    )
    print("Co-Adjusted Rand index is {:.2f}".format(cari))
    

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

sparsebm-1.6.2.tar.gz (137.9 kB view details)

Uploaded Source

Built Distribution

sparsebm-1.6.2-py3-none-any.whl (37.6 kB view details)

Uploaded Python 3

File details

Details for the file sparsebm-1.6.2.tar.gz.

File metadata

  • Download URL: sparsebm-1.6.2.tar.gz
  • Upload date:
  • Size: 137.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for sparsebm-1.6.2.tar.gz
Algorithm Hash digest
SHA256 9d5e421f390428d92b55d31577f428014dafa582f913f090a9a0931dfd0aab3c
MD5 63346438c20352ad51081e3be21c7ed6
BLAKE2b-256 60ca582a19918a8b509959c956b95e50a8821342b9c3e9b2e5642f4526e946c3

See more details on using hashes here.

File details

Details for the file sparsebm-1.6.2-py3-none-any.whl.

File metadata

  • Download URL: sparsebm-1.6.2-py3-none-any.whl
  • Upload date:
  • Size: 37.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for sparsebm-1.6.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ce1d3971181312c1e106077d17cbc20e9a700d51ec9abd50c7eeaa645cc03d2d
MD5 d3895c5b5619b0c35673a67523049368
BLAKE2b-256 265564012851f3e544ee87fc6a9cea6de629e844f7d9d9eb79d8e6705e9d1629

See more details on using hashes here.

Supported by

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