Skip to main content

Implements the Computational Hypergraph Discovery algorithm

Project description

Computational Hypergraph Discovery: A Gaussian process framework for connecting the dots

License: Apache 2.0 Python 3.11.4 GitHub Repo

This is the source code for the paper "Computational Hypergraph Discovery: A Gaussian process framework for connecting the dots".

Please see the companion blog post for a gentle introduction to the method and the code. See the repo here for full documentation and examples.

Installation

The code is written in Python 3 and requires the following packages:

  • matplotlib
  • NumPy
  • scipy
  • scikit-learn
  • networkx

You can install using pip:

pip install ComputationalHypergraphDiscovery

Quick start

Graph discovery takes very little time. The following code runs the method on the example dataset provided in the repo. The dataset is a 2D array of shape (n_samples, n_features) where each row is a sample and each column is a feature. After fitting the model, the graph is stored in the GraphDiscovery object, specifically its graph G attribute. The graph is a networkx object, which can be easily plotted using .plot_graph().

You can find the Sachs dataset in the repo, at this link.

import ComputationalHypergraphDiscovery as CHD
import pandas as pd
df=pd.read_csv('path_to\SachsData.csv')
kernel=CHD.Modes.LinearMode()+CHD.Modes.QuadraticMode()
graph_discovery = CHD.GraphDiscovery.from_dataframe(df,mode_kernel=kernel)
graph_discovery.fit()
graph_discovery.plot_graph()

Available modifications of the base algorithm

The code gives an easy-to-use interface to manipulate the graph discovery method. It is designed to be modular and flexible. The main changes you can make are

  • Kernels and modes: You can decide what type of function will be used to link the nodes. The code provides a set of kernels, but you can easily add your own. The interface is designed to resemble the scikit-learn API, and you can use any kernel from scikit-learn.
  • Decision logics: In order to identify the edges of the graph, we need to decide whether certain connections are significant. The code provides indicators (like the level of noise), and the user specifies how to interpret them. The code provides a set of decision logic, but you can define your own.
  • Clustering: If a set of nodes is highly dependent, it is possible to merge them into a cluster of nodes. This gives greater readability and prevents the graph discovery method from missing other connections.
  • Possible edges: If you know that specific nodes cannot be connected, you can specify it to the algorithm. By default, all edges are possible.

Full documentation is available here.

Acknowledgements

Copyright 2023 by the California Institute of Technology. ALL RIGHTS RESERVED. United States Government Sponsorship acknowledged. This software may be subject to U.S. export control laws. By accepting this software, the user agrees to comply with all applicable U.S. export laws and regulations. User has the responsibility to obtain export licenses, or other export authority as may be required before exporting such information to foreign countries or providing access to foreign persons.

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

Built Distribution

File details

Details for the file ComputationalHypergraphDiscovery-1.0.3.tar.gz.

File metadata

File hashes

Hashes for ComputationalHypergraphDiscovery-1.0.3.tar.gz
Algorithm Hash digest
SHA256 56bf1a4ca290b34d00d50fd0e603fba35064ffd34d7a96928ee99d2568b5717b
MD5 92b3f2f11b9a4bca30118e23a1400174
BLAKE2b-256 e3f754e4d401e73810f8666da608cd04dcd96b4357fa09f4d3114f44f9b7ccd2

See more details on using hashes here.

File details

Details for the file ComputationalHypergraphDiscovery-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for ComputationalHypergraphDiscovery-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 029b79738706cbe8f498a1a13eb03ee4dafd47ae7bdcc12e9ac6905514ae5b51
MD5 4b00a8d397d0b941eae25fc815746661
BLAKE2b-256 2c88b911f81f6bbc617b6bc5e085683b7eeb6dec392555f1bbe82c1e642c4aa8

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