GithubHelp home page GithubHelp logo

mldroid / graph2vec-1 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from benedekrozemberczki/graph2vec

0.0 2.0 0.0 102 KB

A distributed implementation of "graph2vec: Learning Distributed Representations of Graphs" (MLGWorkshop 2017).

Python 100.00%

graph2vec-1's Introduction

graph2vec

graph2vec is an embedding algorithm which learns representations for a set of graphs using an implicit factorization machine. The procedure places graphs in an abstract feature space where graphs with similar structural properties (Weisfehler-Lehman features) are clustered together. Graph2vec has a linear runtime complexity in the number of graphs in the dataset which makes it extremely scalable. This specific implementation supports multi-core data processing in the feature extraction and factorization phases. (So far this is the only implementation which support multi-core processing in every phase).

This repository provides an implementation for graph2vec as it is described in:

graph2vec: Learning distributed representations of graphs. Narayanan, Annamalai and Chandramohan, Mahinthan and Venkatesan, Rajasekar and Chen, Lihui and Liu, Yang MLG 2017, 13th International Workshop on Mining and Learning with Graphs (MLGWorkshop 2017).

Requirements

The codebase is implemented in Python 2.7. Package versions used for development are just below.

networkx          1.11
tqdm              4.19.5
numpy             1.13.3
pandas            0.20.3
jsonschema        2.6.0
joblib            0.11
gensim            3.1.0.
numpy             1.14.3
logging           0.4.9.6  

Datasets

The code takes an input folder with json files. Every file is a graph and files have a numeric index as a name. The json files have two keys. The first key called "edges" corresponds to the edge list of the graph. The second key "features" corresponds to the node features. If the second key is not present the WL machine defaults to use the node degree as a feature. A sample graph dataset from NCI1 is included in the dataset/ directory.

Options

Learning of the embedding is handled by the src/graph2vec.py script which provides the following command line arguments.

Input and output options

  --input-path STR                Input folder.                                     Default is `dataset/`.
  --output-path STR               Embeddings path.                                  Default is `features/nci1.csv`.

Model options

  --dimensions INT                Number of dimensions.                             Default is 128.
  --workers INT                   Number of workers.                                Default is 4.
  --epochs INT                    Number of training epochs.                        Default is 1.
  --min-count INT                 Minimal feature count to keep.                    Default is 5.
  --wl-iterations INT             Number of feature extraction recursions.          Default is 2.
  --learning-rate FLOAT           Initial learning rate.                            Default is 0.025.
  --down-sampling FLOAT           Down sampling rate for frequent features.         Default is 0.0001.

Examples

The following commands learn an embedding of the graphs and writes it to disk. The node representations are ordered by the ID.

Creating a graph2vec embedding of the default dataset with the default hyperparameter settings. Saving the embedding at the default path.

python src/graph2vec.py

Creating an embedding of an other dataset. Saving the output in a custom place.

python src/graph2vec.py --input-path new_data/ --output-path features/nci2.csv

Creating an embedding of the default dataset in 32 dimensions.

python src/graph2vec.py --dimensions 32

graph2vec-1's People

Contributors

benedekrozemberczki avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.