dmlc / dgl

Python package built to ease deep learning on graph, on top of existing DL frameworks.
http://dgl.ai
Apache License 2.0
13.43k stars 3k forks source link

[RFC] Improve dgl.nn, dgl.data and examples #756

Closed jermainewang closed 4 years ago

jermainewang commented 5 years ago

Problem

There have been a bunch of requests and efforts (PR #744 #748 #753 Issue #719 #742) around our modules, examples and dataset. This RFC would like to discuss some details and write out the roadmap. I know there has been some internal discussions among @mufeili and @VoVAllen about the drug/chemical dataset/applications. I hope you could also summarize it a bit and improve this RFC. This RFC is likely to be broken down into several PRs (for example, #748 is a good start), so having a roadmap is quite important to track the progress.

The problem of the current DGL examples is that (1) Reusable modules are scattered in many training scripts, making them hard to be accessed by the end users. (2) We need to add way more modules and layers due to the increasing demand from the community. This has severely impeded DGL from more adoption. (3) The organization is not clean. Each example is put in its dedicated folder. We should have a better hierarchy to organize them (possibly by application type). (4) Example codes are not included in CI, making it hard to maintain.

Proposal

To fix this, this RFC proposes the following changes: (1) Move as many layer/module components as possible from examples to nn namespace. These modules should be functional, has graph object in the argument to allow dynamic graph, and has clear documentation. We also need to implement them for both mxnet and pytorch. (2) Try organize modules in the following categories.

Suggestion from @classicsong: It's better that we could have a unified entry point of each. For example:

python examples/recsys/train.py --dataset=movielens100k --model=gcmc

This allows the users to easily compare baselines.

Finally, it is a good time to finally refactor and write more docstrings for these modules. We could also take this chance to enable lint check on dgl.data module and move sampling routines to DGL main packages.

Check List

@mufeili @VoVAllen @yzh119 @zheng-da and anyone who are involved. Please directly edit this post to add items. We could estimate the workload from this.

dgl.nn

Graph convolution (dgl.nn.<backend>.conv.py)

node-level classification/regression TBD

Link prediction

Graph generation

loss.py TBD

metrics.py TBD

Functional APIs (dgl.nn.functional) TBD

dgl.data Community detection

Graph classification

Recommender system

Network embedding

Examples Community detection

Graph classification

Recommender system

Network embedding

Point Cloud

VoVAllen commented 5 years ago

I think drug model zoo can be a good starting point for something like python examples/recsys/train.py --dataset=movielens100k --model=gcmc. Also I think it's time to schedule the next release.

VoVAllen commented 5 years ago

Also I think nightly build should be implemented before next release.

mufeili commented 5 years ago

I think there are two key issues to be addressed.

  1. We need to decide if examples and model zoos are going to be the same. I agree that we need to make the code more reusable like layers, loss functions, but I'm a bit reluctant to make the two things completely the same. In my opinion, examples are more like entry points for accessing a new framework. They can be more model driven or simply demos for a task. With 200 lines of code in 2-3 files, one can quickly understand how to implement some known models with new APIs. On the contrary, model zoos are application driven and can be deeply wrapped. Code can be easily scattered over more than 10 files and they probably also include some application specific processing. If I want to benchmark models or just want to apply them, I will turn to particular model zoos. But if I'm an engineer or researcher who just got interested in GNNs or only interested in adapting models for my own use, I'd rather start with examples. PyTorch has separate examples and model zoo (e.g. torchvision).
  2. We need to decide if model zoos/application driven staff will be included in dgl or stand alone. For pure graph based operation we should definitely include them in dgl, but when it comes to applications we can easily get more complex and even graph free staff like data processing, featurization, evaluation, additional dependency libraries etc. For example, in Chemistry we mostly represent each molecule as a string; we need to featurize atoms and bonds; we cannot even breath without libraries like RDKit. To include everything in dgl will not only be difficult but also make the library very heavy. I personally think something like torchvision will be more realistic.

Minor issues:

  1. What you referred as model zoo sounds more like blocks/layers.
  2. nightly build is definitely needed. In addition to the long release cycle, a common mistake is that if you did not uninstall the old version, you might still import it even if you build from source for a new version.
jermainewang commented 5 years ago

@mufeili You are right about model zoo. I changed the title and text to be more accurate. This RFC is about dgl.nn, dgl.data and examples folder. I saw you've opened an roadmap for drug model zoos, so the relevant discussion should be moved there. Now the question is whether we should unify the entry point or not? python examples/recsys/train.py --dataset=movielens100k --model=gcmc seems to be more suitable for model zoo?

Another related question is whether examples should demonstrate the usage of message passing APIs? The current proposal suggests relying mostly on dgl.nn which then utilizes message passing APIs.

mufeili commented 5 years ago

@jermainewang @VoVAllen We are now doing python examples/pytorch/model_zoo/chem/property_prediction/classification.py --dataset X --model Y. We should probably reduce the number of hierarchies, but the general idea seems to be fine here.

I think we can completely rely on dgl.nn in examples and only demonstrate the usage of message passing APIs and probably how they are used in an nn.Module in tutorials. However, we should make it more clear about what are the minimal tutorials to check for new users.

VoVAllen commented 5 years ago

I don't think we need to unify the entry point at current stage.