1. 09 Sep, 2019 1 commit
  2. 08 Sep, 2019 1 commit
    • xiang song(charlie.song)'s avatar
      [Kernel][Perf] Message builtin with broadcasting performance optimization (#815) · bcd33e0a
      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
      
      * Test performance of udf
      
      * trigger
      
      * Fix doc
      
      * Add nn.TGConv and example
      
      * Update test code
      
      * 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 for mxnet TAGCov
      
      * Add test code for mxnet TAGCov
      
      * Update some docs
      
      * Fix some code
      
      * Update docs dgl.nn.mxnet
      
      * Update weight init
      
      * Fix
      
      * Minor opt for URRevel
      
      * Delete test code
      
      * Update code style and notes.
      
      * Fix func name
      bcd33e0a
  3. 07 Sep, 2019 1 commit
  4. 05 Sep, 2019 1 commit
  5. 04 Sep, 2019 2 commits
  6. 03 Sep, 2019 1 commit
  7. 02 Sep, 2019 2 commits
    • ziqiaomeng's avatar
      [Example] metapath2vec (#764) · ddeb86f9
      ziqiaomeng authored
      * Prepare for metapath sampler
      
      This file is just for reviewing metapath sampling algorithm (Python version).
      
      * Delete metapath_sampler
      
      * Prepare for metapath sampler
      
      This file is just for reviewing metapath sampling algorithm (Python code).
      
      * Add files via upload
      
      * Create metapath2vec.md
      
      * Add files via upload
      
      * Delete data_handler.py
      
      * Delete word2vec.py
      
      * Delete word_train.py
      
      * Add files via upload
      
      Metapath2vec implementations. Metapath2vec++ needs negative sampler optimization.
      
      * Delete shuffle_training.py
      
      * Delete test.py
      
      * Add files via upload
      
      * Delete sampler.py
      
      * Delete metapath_sampler.md
      
      * Add files via upload
      
      * Update and rename shuffle_training.py to metapath2vec.py
      
      * Update reading_data.py
      
      * Update metapath2vec.md
      
      * Update metapath2vec.md
      
      * Update metapath2vec.md
      
      * Update metapath2vec.md
      
      * Update metapath2vec.md
      
      * Create label 2
      
      * Delete label 2
      
      * Create testing.md
      
      * Add files via upload
      
      * Create sample.md
      
      * Add files via upload
      
      * Delete sampler.py
      
      * Add files via upload
      
      * Delete googlescholar.8area.author.label.txt
      
      * Delete googlescholar.8area.venue.label.txt
      
      * Delete testing.md
      
      * Delete id_author.txt
      
      * Delete id_conf.txt
      
      * Delete paper.txt
      
      * Delete paper_author.txt
      
      * Delete paper_conf.txt
      
      * Delete sample.md
      
      * Delete sampler.py
      
      * Add files via upload
      
      * Add files via upload
      
      * Add files via upload
      
      * Delete reading_data.py
      
      * Add files via upload
      
      * Add files via upload
      
      * Delete metapath2vec.py
      
      * Add files via upload
      
      * Rename shuffle_training.py to metapath2vec.py
      
      * Update metapath2vec.md
      
      * Delete reading_data.py
      
      * add comments and remov e commented codes
      ddeb86f9
    • MilkshakeForReal's avatar
      [docs]update conv.py (#822) · 98954c56
      MilkshakeForReal authored
      * Update conv.py
      
      * Update conv.py
      
      change `oto` to `to
      98954c56
  8. 01 Sep, 2019 2 commits
  9. 31 Aug, 2019 1 commit
  10. 30 Aug, 2019 3 commits
  11. 28 Aug, 2019 9 commits
    • Da Zheng's avatar
      6ab593ec
    • Da Zheng's avatar
      [Doc] add figures for explanation (#807) · 1c9c0339
      Da Zheng authored
      * fix.
      
      * update
      1c9c0339
    • 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
  12. 27 Aug, 2019 8 commits
  13. 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
  14. 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
  15. 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
  16. 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
  17. 21 Aug, 2019 1 commit
    • 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