Skip to main content

A subgraph matching programming library.

Project description

openGraphMatching

A Python Graph/Subgraph Matching programming library. Based on openGraphMatching and the framework provided, you can develop and test different subgraph matching algorithms efficiently. What's more, since the codebase is Python-based, algorithms with neural networks can be integrated easily with traditional subgraph matching algorithms.

Usage

Prerequisite pytorch>=1.6, networkx, pytorch-geometric, deepsnap.

A detailed environment configration can be found in env.yml.

The BaseMatcher is the minium implementation of subgraph matching algorithm.

Here is the demo code for running GraphQL algorithm:

import openGraphMatching.matcher as matcher

# Prepare query graph q and target graph G in advance. q and G are networkx instance.

m = matcher.GQLMatcher(G) # Initialize the object with targer graph G
m.is_subgraph_match(q) # Run the check match process

Quickstart

  • Clone this repository: git clone https://github.com/chang2000/openGraphMatching
  • Install all prerequisite
  • pip install openGraphMatching to install this package.
  • Go to examples and enjoy~

For Conda users, the conda environment file env.yml is also provided. This link provides the method to install conda environment by a environment file. In short, use this commend conda env create -f env.yml. A conda environment named ogm will be created.

Internals

Each matcher follows the filtering->ordering->enumerating design pattern. In the directory matcher there are three files: filters.py, orders.py,enumeraters.py, where each file contains the general algorithms.

For example, in the graphQL matcher, the code pipeline is like:

from openGraphMatching import BaseMatcher
from openGraphMatching import filters as f
from openGraphMatching import orders as o
from openGraphMatching import enumeraters as e

class GQLMatcher(BaseMatcher):
    def __init__(self, G):
        super().__init__(G)

    def filtering(self, q):
        prefilter = f.Filter(self.G)
        return prefilter.gql_filtering(q)

    def ordering(self, q, candidates):
        orderer = o.Order(self.G)
        return orderer.gql_order(q, candidates)

    def enumerate(self, q, imd, order, i):
        enu = e.Enumerater(self.G)
        enu.normal_enum(q, imd, order, i)
        return enu.res_getter()

    def is_subgraph_match(self, q):
      	# Some verbose and statistics are skipped here
        candidates = self.filtering(q)
        order = self.ordering(q, candidates)
        match_list = self.enumerate(q, candidates, order, 1)
        return match_list

Misc

  1. Validate the correctness of algorithm.

    • We use HPRD (9460 nodes, 34998 edges) to validate the correctness considering the time consuming and program performance.
    • We provides 200 quries(dense, 16 nodes).
    • A correctness checker is implemented in utils.py.
    • Expected result of all the matching are provided in expected.res. Refer to the dataset validate for more information.
  2. The data format of the datasets

    1. For each .graph file, the first line will always be t x y where x and y are two int indicates the number of nodes and edges

    2. Vertex data v v_id v_label v_degree

  3. Edge data e v_id v_id

Side word

  • Cannot handle yeast well even it has a smaller dataset size, since around 10% of nodes left for 3000 nodes.

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

openGraphMatching-0.2.0.tar.gz (17.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

openGraphMatching-0.2.0-py3-none-any.whl (23.6 kB view details)

Uploaded Python 3

File details

Details for the file openGraphMatching-0.2.0.tar.gz.

File metadata

  • Download URL: openGraphMatching-0.2.0.tar.gz
  • Upload date:
  • Size: 17.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.1.post20201107 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for openGraphMatching-0.2.0.tar.gz
Algorithm Hash digest
SHA256 39969918f62a8bbaef83262bf3d7117266188683c220dc7d921439aae1e77df9
MD5 2e2e93f75c9f40371a484d2b8799ea32
BLAKE2b-256 4535d8d7114418e1d5f3fd81f8efc958ce56d70e48d408f27ece74e713293833

See more details on using hashes here.

File details

Details for the file openGraphMatching-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: openGraphMatching-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 23.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.1.post20201107 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for openGraphMatching-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3f14413cf8deda8e19811215bca1d425efc6ea9c85e3f489f811bcd6ed9325b9
MD5 6017b7404faa5e87338b059faa54f15f
BLAKE2b-256 85684504116bd5348703af473c145640e814fff78811ac5500018ce12b499bfb

See more details on using hashes here.

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