"vscode:/vscode.git/clone" did not exist on "e50109f2edfec7cc48a56c41b05fcaef3190087f"
README.txt 1.08 KB
Newer Older
1
2
3
4
5
.. _tutorials3-index:

Generative models
------------------------------

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

16
* **JTNN** `[paper] <https://arxiv.org/abs/1802.04364>`__ `[code]
Minjie Wang's avatar
Minjie Wang committed
17
  <https://github.com/dmlc/dgl/tree/master/examples/pytorch/jtnn>`__:
18
19
20
21
  unlike DGMG, this paper generates molecular graphs using the framework of
  variational auto-encoder. Perhaps more interesting is its approach to build
  structure hierarchically, in the case of molecular, with junction tree as
  the middle scaffolding.