All Projects → pcy1302 → Dmgi

pcy1302 / Dmgi

Unsupervised Attributed Multiplex Network Embedding (AAAI 2020)

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Dmgi

Php Ml
PHP-ML - Machine Learning library for PHP
Stars: ✭ 7,900 (+12641.94%)
Mutual labels:  unsupervised-learning
Interview Guide
Coding/technical interview guide: data structures, algorithms, complexity analyses, interview questions
Stars: ✭ 54 (-12.9%)
Mutual labels:  graph
Dgi
TensorFlow implementation of Deep Graph Infomax
Stars: ✭ 58 (-6.45%)
Mutual labels:  unsupervised-learning
Dgman
Dgraph schema manager, with mutate and query helpers
Stars: ✭ 50 (-19.35%)
Mutual labels:  graph
English2cypher
A model to transform english into Cypher queries, based off the CLEVR-graph dataset
Stars: ✭ 54 (-12.9%)
Mutual labels:  graph
Cacti
Cacti ™
Stars: ✭ 1,090 (+1658.06%)
Mutual labels:  graph
Scaffold Eth
🏗 forkable Ethereum dev stack focused on fast product iterations
Stars: ✭ 1,017 (+1540.32%)
Mutual labels:  graph
Pyflowgraph
Python Module for displaying flowgraphs using Pyside or PyQt.
Stars: ✭ 61 (-1.61%)
Mutual labels:  graph
Rakun
Rank-based Unsupervised Keyword Extraction via Metavertex Aggregation
Stars: ✭ 54 (-12.9%)
Mutual labels:  unsupervised-learning
Hypergan
Composable GAN framework with api and user interface
Stars: ✭ 1,104 (+1680.65%)
Mutual labels:  unsupervised-learning
Home Assistant Z Wave Graph
Graph your Z-Wave mesh automatically from within Home Assistant.
Stars: ✭ 51 (-17.74%)
Mutual labels:  graph
Geeksforgeeks Dsa 2
This repository contains all the assignments and practice questions solved during the Data Structures and Algorithms course in C++ taught by the Geeks For Geeks team.
Stars: ✭ 53 (-14.52%)
Mutual labels:  graph
Stardog.js
Stardog JavaScript Framework for node.js and the browser
Stars: ✭ 57 (-8.06%)
Mutual labels:  graph
Voxelmorph
Unsupervised Learning for Image Registration
Stars: ✭ 1,057 (+1604.84%)
Mutual labels:  unsupervised-learning
Embedded gcnn
Embedded Graph Convolutional Neural Networks (EGCNN) in TensorFlow
Stars: ✭ 60 (-3.23%)
Mutual labels:  graph
Pure Vue Chart
Simple and lightweight vue chart component without using chart library dependencies
Stars: ✭ 50 (-19.35%)
Mutual labels:  graph
Rainbarf
it's like Rainmeter, but for CLI!
Stars: ✭ 1,087 (+1653.23%)
Mutual labels:  graph
Weakly Supervised 3d Object Detection
Weakly Supervised 3D Object Detection from Point Clouds (VS3D), ACM MM 2020
Stars: ✭ 61 (-1.61%)
Mutual labels:  unsupervised-learning
Asciichart
Nice-looking lightweight console ASCII line charts ╭┈╯ for NodeJS, browsers and terminal, no dependencies
Stars: ✭ 1,107 (+1685.48%)
Mutual labels:  graph
Calendar Graph
Calendar graph like github using jsx support SVG, Canvas and SSR
Stars: ✭ 58 (-6.45%)
Mutual labels:  graph

Unsupervised Attributed Multiplex Network Embedding (DMGI)

Overview

Nodes in a multiplex network are connected by multiple types of relations. However, most existing network embedding methods assume that only a single type of relation exists between nodes. Even for those that consider the multiplexity of a network, they overlook node attributes, resort to node labels for training, and fail to model the global properties of a graph. We present a simple yet effective unsupervised network embedding method for attributed multiplex network called DMGI, inspired by Deep Graph Infomax (DGI) that maximizes the mutual information between local patches of a graph, and the global representation of the entire graph. We devise a systematic way to jointly integrate the node embeddings from multiple graphs by introducing 1) the consensus regularization framework that minimizes the disagreements among the relation-type specific node embeddings, and 2) the universal discriminator that discriminates true samples regardless of the relation types. We also show that the attention mechanism infers the importance of each relation type, and thus can be useful for filtering unnecessary relation types as a preprocessing step. Extensive experiments on various downstream tasks demonstrate that DMGI outperforms the state-of-the-art methods, even though DMGI is fully unsupervised.

Paper

Requirements

  • Python version: 3.6.8
  • Pytorch version: 1.2.0
  • networkx version: 2.3

How to Run

git clone https://github.com/pcy1302/DMGI.git
cd DMGI
mkdir saved_model
  • Download IMDB data from here to data
python main.py --embedder DMGI --dataset imdb --metapaths MAM,MDM --isAttn
  • Refer to the directory data for preprocessing for DBLP and Amazon datasets.

Data format [(ex) IMDB]

  • A dictionary containing the following keys

    • train_idx: training index, val_idx: validation index, test_idx: test index, feature: feature matrix, label: labels
    • Relations: MDM, MAM
  • NEW (20/10/06): You can download all the preprocessed datasets used in the paper from here

Cite (Bibtex)

  • If you find DMGI useful in your research, please cite the following paper:
    • Park, Chanyoung, Donghyun Kim, Jiawei Han, and Hwanjo Yu. "Unsupervised Attributed Multiplex Network Embedding." AAAI 2020.
    • Bibtex
@article{park2019unsupervised,
  title={Unsupervised Attributed Multiplex Network Embedding},
  author={Park, Chanyoung and Kim, Donghyun and Han, Jiawei and Yu, Hwanjo},
  booktitle={AAAI},
  year={2020}
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].