1. 28 Aug, 2019 7 commits
    • Mufei Li's avatar
      Fix (#806) · 1b5820a5
      Mufei Li authored
      1b5820a5
    • Quan (Andy) Gan's avatar
      [Doc][Conda] Fixing pytorch.nn.factory docs and Conda license (#805) · 98b825e3
      Quan (Andy) Gan authored
      * [Conda] Update license
      
      * doc fixes
      98b825e3
    • Quan (Andy) Gan's avatar
      a5b661a2
    • Quan (Andy) Gan's avatar
      [Doc] Fixing KNNGraph docs (#803) · 828e269c
      Quan (Andy) Gan authored
      828e269c
    • xiang song(charlie.song)'s avatar
      [NN] Add MXNet impl for TAGCN module. (#799) · e17add56
      xiang song(charlie.song) authored
      * upd
      
      * fig edgebatch edges
      
      * add test
      
      * trigger
      
      * Update README.md for pytorch PinSage example.
      
      Add noting that the PinSage model example under
      example/pytorch/recommendation only work with Python 3.6+
      as its dataset loader depends on stanfordnlp package
      which work only with Python 3.6+.
      
      * Provid a frame agnostic API to test nn modules on both CPU and CUDA side.
      
      1. make dgl.nn.xxx frame agnostic
      2. make test.backend include dgl.nn modules
      3. modify test_edge_softmax of test/mxnet/test_nn.py and
          test/pytorch/test_nn.py work on both CPU and GPU
      
      * Fix style
      
      * Delete unused code
      
      * Make agnostic test only related to tests/backend
      
      1. clear all agnostic related code in dgl.nn
      2. make test_graph_conv agnostic to cpu/gpu
      
      * Fix code style
      
      * fix
      
      * doc
      
      * Make all test code under tests.mxnet/pytorch.test_nn.py
      work on both CPU and GPU.
      
      * Fix syntex
      
      * Remove rand
      
      * Add TAGCN nn.module and example
      
      * Now tagcn can run on CPU.
      
      * Add unitest for TGConv
      
      * Fix style
      
      * For pubmed dataset, using --lr=0.005 can achieve better acc
      
      * Fix style
      
      * Fix some descriptions
      
      * trigger
      
      * Fix doc
      
      * Add nn.TGConv and example
      
      * Fix bug
      
      * Update data in mxnet.tagcn test acc.
      
      * Fix some comments and code
      
      * delete useless code
      
      * Fix namming
      
      * Fix bug
      
      * Fix bug
      
      * Add test code for mxnet TAGCov
      
      * Update some docs
      
      * Fix some code
      
      * Update docs dgl.nn.mxnet
      
      * Update weight init
      
      * Fix
      e17add56
    • Quan (Andy) Gan's avatar
      [NN] Renaming NearestNeighborGraph to KNNGraph (#802) · 14bffe97
      Quan (Andy) Gan authored
      * initial commit
      
      * second commit
      
      * another commit
      
      * change docstring
      
      * migrating to dgl.nn
      
      * fixes
      
      * docs
      
      * lint
      
      * multiple fixes
      
      * doc
      
      * renaming nearest neighbor graph
      14bffe97
    • Quan (Andy) Gan's avatar
      [Example] Dynamic Graph CNN on Point Cloud (#789) · dc19cd56
      Quan (Andy) Gan authored
      * initial commit
      
      * second commit
      
      * another commit
      
      * change docstring
      
      * migrating to dgl.nn
      
      * fixes
      
      * docs
      
      * lint
      
      * multiple fixes
      
      * doc
      dc19cd56
  2. 27 Aug, 2019 8 commits
  3. 26 Aug, 2019 1 commit
    • lunar's avatar
      [Model Zoo] Molecule Regression (#779) · 3bc73931
      lunar authored
      * [Model] MPNN
      
      * [Model] MPNN 🔨 reorganize the mpnn/sch/mgcn model & alchemy dataset
      
      * [Model] MPNN alchemy dataloader refactoring
      
      * [Model] Chem model zoo minor change
      
      * [Model] Chem Model Zoo 🔥 remove old samples
      
      * [Model Zoo] molecule regression minor change
      
      * Fix dataset import
      
      * Fix dataset import
      
      * [Model Zoo] molecule regression test set
      
      * [Model Zoo] molecule prediction MPNN model hyperparameter tuning
      
      * [Model Zoo] molecule prediction  mpnn performance update
      3bc73931
  4. 25 Aug, 2019 3 commits
    • Zihao Ye's avatar
      [Feature] Add builtin mean reducer (#787) · 2c234118
      Zihao Ye authored
      * upd
      
      * upd
      
      * upd
      
      * upd
      
      * upd
      
      * passed test
      
      * add note
      
      * upd
      
      * trigger
      
      * slight change
      
      * upd
      
      * upd
      
      * trigger
      
      * fix
      
      * simplify
      
      * upd
      
      * upd
      
      * fudge
      
      * upd
      
      * trigger
      
      * test partial
      
      * upd
      
      * trigger
      2c234118
    • Mufei Li's avatar
      [Model Zoo] DGMG for molecule generation (#783) · 73b2668f
      Mufei Li authored
      * DGMG for molecule generation
      
      * Fix CI check
      
      * Fix for CI
      
      * Trial for CI due to shared memory
      
      * Update
      
      * Better interface for dataset configuration
      
      * Update
      
      * Handle corner cases
      
      * Update README
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Refactor
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Update
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Finallly
      73b2668f
    • xiang song(charlie.song)'s avatar
      [NN] Add TAGCN nn.module and example (#788) · 11fb217a
      xiang song(charlie.song) authored
      * upd
      
      * fig edgebatch edges
      
      * add test
      
      * trigger
      
      * Update README.md for pytorch PinSage example.
      
      Add noting that the PinSage model example under
      example/pytorch/recommendation only work with Python 3.6+
      as its dataset loader depends on stanfordnlp package
      which work only with Python 3.6+.
      
      * Provid a frame agnostic API to test nn modules on both CPU and CUDA side.
      
      1. make dgl.nn.xxx frame agnostic
      2. make test.backend include dgl.nn modules
      3. modify test_edge_softmax of test/mxnet/test_nn.py and
          test/pytorch/test_nn.py work on both CPU and GPU
      
      * Fix style
      
      * Delete unused code
      
      * Make agnostic test only related to tests/backend
      
      1. clear all agnostic related code in dgl.nn
      2. make test_graph_conv agnostic to cpu/gpu
      
      * Fix code style
      
      * fix
      
      * doc
      
      * Make all test code under tests.mxnet/pytorch.test_nn.py
      work on both CPU and GPU.
      
      * Fix syntex
      
      * Remove rand
      
      * Add TAGCN nn.module and example
      
      * Now tagcn can run on CPU.
      
      * Add unitest for TGConv
      
      * Fix style
      
      * For pubmed dataset, using --lr=0.005 can achieve better acc
      
      * Fix style
      
      * Fix some descriptions
      
      * trigger
      
      * Fix doc
      11fb217a
  5. 23 Aug, 2019 2 commits
    • Minjie Wang's avatar
      [NN] RGCN modules (#744) · 708765f0
      Minjie Wang authored
      * rgcn module
      
      * support id input
      
      * WIP: model codes
      
      * use faster index select
      
      * dropout
      
      * self loop
      
      * WIP: link prediction
      
      * fix lint
      
      * WIP: docs
      
      * docstring
      
      * docstring
      
      * merge two child classes
      
      * mxnet rgcn module
      
      * fix lint
      
      * fix lint
      
      * fix rename bug
      
      * add uniform edge sampler
      
      * fix fn name
      
      * docstring
      
      * fix mxnet rgcn module
      
      * fix mx rgcn
      
      * enable test on cuda
      708765f0
    • Quan (Andy) Gan's avatar
      [Hetero][RFC] Heterogeneous graph Python interfaces & Message Passing (#752) · 52d4535b
      Quan (Andy) Gan authored
      * moving heterograph index to another file
      
      * node view
      
      * python interfaces
      
      * heterograph init
      
      * bug fixes
      
      * docstring for readonly
      
      * more docstring
      
      * unit tests & lint
      
      * oops
      
      * oops x2
      
      * removed node/edge addition
      
      * addressed comments
      
      * lint
      
      * rw on frames with one node/edge type
      
      * homograph with underlying heterograph demo
      
      * view is not necessary
      
      * bugfix
      
      * replace
      
      * scheduler, builtins not working yet
      
      * moving bipartite.h to header
      
      * moving back bipartite to bipartite.h
      
      * oops
      
      * asbits and copyto for bipartite
      
      * tested update_all and send_and_recv
      
      * lightweight node & edge type retrieval
      
      * oops
      
      * sorry
      
      * removing obsolete code
      
      * oops
      
      * lint
      
      * various bug fixes & more tests
      
      * UDF tests
      
      * multiple type number_of_nodes and number_of_edges
      
      * docstring fixes
      
      * more tests
      
      * going for dict in initialization
      
      * lint
      
      * updated api as per discussions
      
      * lint
      
      * bug
      
      * bugfix
      
      * moving back bipartite impl to cc
      
      * note on views
      
      * fix
      52d4535b
  6. 22 Aug, 2019 1 commit
    • Da Zheng's avatar
      [Feature] Add edge sampling for link prediction (#780) · 66971c1a
      Da Zheng authored
      * add edge sampler.
      
      * add test and run.
      
      * add negative sampling.
      
      * remap the edge subgraph vid.
      
      * negative graph excludes edges of positive edgs.
      
      * remove print.
      
      * avoid sampling NodeFlow when expand_factor or num_hops is 0.
      
      * fix a bug when excluding nodes in negative graph.
      
      * support multigraph.
      
      * exclude positive edges.
      
      * fix memory leak.
      
      * return subgraph object directly.
      
      * fix many problems.
      
      * add comments.
      
      * address comments
      66971c1a
  7. 21 Aug, 2019 3 commits
    • xiang song(charlie.song)'s avatar
      [Test] Provid a frame agnostic API to test nn modules on both CPU and CUDA side. (#775) · 2bff8339
      xiang song(charlie.song) authored
      * upd
      
      * fig edgebatch edges
      
      * add test
      
      * trigger
      
      * Update README.md for pytorch PinSage example.
      
      Add noting that the PinSage model example under
      example/pytorch/recommendation only work with Python 3.6+
      as its dataset loader depends on stanfordnlp package
      which work only with Python 3.6+.
      
      * Provid a frame agnostic API to test nn modules on both CPU and CUDA side.
      
      1. make dgl.nn.xxx frame agnostic
      2. make test.backend include dgl.nn modules
      3. modify test_edge_softmax of test/mxnet/test_nn.py and
          test/pytorch/test_nn.py work on both CPU and GPU
      
      * Fix style
      
      * Delete unused code
      
      * Make agnostic test only related to tests/backend
      
      1. clear all agnostic related code in dgl.nn
      2. make test_graph_conv agnostic to cpu/gpu
      
      * Fix code style
      
      * fix
      
      * doc
      
      * Make all test code under tests.mxnet/pytorch.test_nn.py
      work on both CPU and GPU.
      
      * Fix syntex
      
      * Remove rand
      2bff8339
    • Da Zheng's avatar
      use FFI for subgraph. (#781) · be936da8
      Da Zheng authored
      be936da8
    • VoVAllen's avatar
      [Model] Early stop GAT (#750) · 0f127637
      VoVAllen authored
      * Add early stop
      
      * add mxnet version
      
      * Poke ci
      0f127637
  8. 20 Aug, 2019 1 commit
  9. 18 Aug, 2019 2 commits
  10. 17 Aug, 2019 1 commit
  11. 16 Aug, 2019 2 commits
  12. 15 Aug, 2019 1 commit
    • Mufei Li's avatar
      [Model Zoo] Refactor GCN on Tox21 (#766) · cd9fb7ba
      Mufei Li authored
      * [Model zoo] Model zoo (#765)
      
      * tox21
      
      * fix ci
      
      * fix ci
      
      * fix urls to url
      
      * add doc
      
      * remove binary
      
      * model zoo
      
      * test
      
      * markdown
      
      * fix typo
      
      * fix typo
      
      * fix typo
      
      * raise error
      
      * fix lint
      
      * remove unnecessary
      
      * fix doc
      
      * fix
      
      * fix
      
      * fix
      
      * fix
      
      * fix
      
      * fix
      
      * Update
      
      * CI
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * CI
      cd9fb7ba
  13. 14 Aug, 2019 2 commits
  14. 10 Aug, 2019 1 commit
  15. 09 Aug, 2019 1 commit
  16. 07 Aug, 2019 3 commits
    • lunar's avatar
      [Model] Schnet & MGCN (#726) · e1f08644
      lunar authored
      * [Model] SchNet
      
      * [Model] SchNet model
      
      * [Model] Schnet Model fix device-related bug
      
      * [Model] SchNet fix bugs
      
      * [Model] SchNet fix some bugs
      
      * [Model] Schnet 🎨 code indent format
      
      * [Model] SchNet  fix some typos
      e1f08644
    • Chao Ma's avatar
      [Fix] Hold NDArray reference during send() (#740) · 747a8bee
      Chao Ma authored
      * fix NDArray reference
      
      * fix lint
      
      * capture NDArray in the closure
      747a8bee
    • Quan (Andy) Gan's avatar
      [NodeFlow] Non-uniform neighbor sampling (#711) · 16061925
      Quan (Andy) Gan authored
      * nonuniform sampler
      
      * unit test
      
      * test on out neighbors
      
      * error checks
      
      * lint
      
      * fix
      
      * clarification
      
      * use macro switcher
      
      * use empty array for uniform sampling
      
      * oops
      
      * Revert "oops"
      
      This reverts commit a11f9ae707aaeb67fb5921c887a17d3711d5b04a.
      
      * Revert "use empty array for uniform sampling"
      
      This reverts commit 8526ce4cade89f2c1b09a08aca8830375ebafb31.
      
      * re-reverting
      
      * use a method
      16061925
  17. 06 Aug, 2019 1 commit