README.txt 1.06 KB
Newer Older
1
2
3
.. _tutorials3-index:

Generative models
4
==================
5

6
* **DGMG** `[paper] <https://arxiv.org/abs/1803.03324>`__ `[tutorial]
7
  <3_generative_model/5_dgmg.html>`__ `[PyTorch code]
Minjie Wang's avatar
Minjie Wang committed
8
  <https://github.com/dmlc/dgl/tree/master/examples/pytorch/dgmg>`__:
9
10
11
  This model belongs to the family that deals with structural
  generation. Deep generative models of graphs (DGMG) uses a state-machine approach. 
  It is also very challenging because, unlike Tree-LSTM, every
12
  sample has a dynamic, probability-driven structure that is not available
13
  before training. You can progressively leverage intra- and
14
  inter-graph parallelism to steadily improve the performance.
15

16
* **JTNN** `[paper] <https://arxiv.org/abs/1802.04364>`__ `[PyTorch code]
Minjie Wang's avatar
Minjie Wang committed
17
  <https://github.com/dmlc/dgl/tree/master/examples/pytorch/jtnn>`__:
18
19
20
  This network generates molecular graphs using the framework of
  a variational auto-encoder. The junction tree neural network (JTNN) builds
  structure hierarchically. In the case of molecular graphs, it uses a junction tree as
21
  the middle scaffolding.