1. 09 Jun, 2019 2 commits
    • Minjie Wang's avatar
      [Examples] Run all the examples (#623) · dec8b49b
      Minjie Wang authored
      * all pytorch examples
      
      * scan through mxnet examples
      
      * change reddit data
      
      * tweak numerical range for unittest
      
      * fix ci
      
      * fix ci
      
      * fix
      
      * add seed to workaround
      dec8b49b
    • Lingfan Yu's avatar
      [Model] Update GAT model code (#622) · 74e13eea
      Lingfan Yu authored
      * fix gat code to use latest edge softmax module
      
      * avoid transpose
      
      * update README
      
      * use edge_softmax op
      
      * mxnet edge softmax op
      
      * mxnet gat
      
      * update README
      
      * fix unittest
      
      * fix ci
      
      * fix mxnet nn test; relax criteria for prod reducer
      74e13eea
  2. 30 May, 2019 1 commit
  3. 28 May, 2019 1 commit
  4. 26 May, 2019 1 commit
  5. 24 May, 2019 1 commit
  6. 23 May, 2019 2 commits
  7. 16 May, 2019 1 commit
  8. 28 Apr, 2019 1 commit
  9. 23 Apr, 2019 1 commit
  10. 22 Apr, 2019 1 commit
  11. 18 Apr, 2019 1 commit
    • Aymen Waheb's avatar
      [Model] Add edge dropout to APPNP (#493) · 3f464591
      Aymen Waheb authored
      * [Model] Add edge dropout to APPNP
      
      [Model] Add edge dropout to APPNP
      
      * [Model] Refactor the sampling examples (#498)
      
      * reorganize sampling code.
      
      * speedup gcn_ns.
      
      * speed up gcn_cv
      
      * fix graphsage_cv.
      
      * undo the modification.
      
      * accel training.
      
      * update readme.
      
      * [Model] Add edge dropout to APPNP
      
      [Model] Add edge dropout to APPNP
      
      update
      3f464591
  12. 17 Apr, 2019 1 commit
    • kitaev-chen's avatar
      [Model] Add GIN Model (#471) · a3febc06
      kitaev-chen authored
      * add gin model
      
      * convert dataset.py to data_ont_the_fly way and put it into dgl.data module
      
      * convert dataset.py to data_ont_the_fly way and put it into dgl.data module
      python code checked
      
      * modified document and reference TUDataset; checked python part and bypass cpp part due to error
      
      * change tensor to numpy in dataset and transform in collate@Dataloader
      
      * Change minor format issue
      
      Change minor format issue
      
      * moved logging; adjusted tqdm etc
      a3febc06
  13. 11 Apr, 2019 1 commit
  14. 10 Apr, 2019 1 commit
  15. 09 Apr, 2019 1 commit
    • Aymen Waheb's avatar
      [Model] Add APPNP model (#480) · fa887f69
      Aymen Waheb authored
      * [Model] Add APPNP model
      
      * update
      
      * Revert "update"
      
      This reverts commit a8e42d19c8b421fb382305a8f04d7426e78ea53c.
      
      * update
      
      * Update appnp.py
      fa887f69
  16. 05 Apr, 2019 1 commit
  17. 29 Mar, 2019 1 commit
    • Quan (Andy) Gan's avatar
      [Model][Feature] PinSage & Random Walk with Restart (#453) · 6066fee9
      Quan (Andy) Gan authored
      * random walk traces generation
      
      * remove outdated comments
      
      * oops put in the wrong place
      
      * explicit inline
      
      * moving rand_r to util
      
      * pinsage-like model on movielens
      
      * the code runs now
      
      * support cuda
      
      * using readonly graph
      
      * moving random walk to public function
      
      * per-thread seed and openmp support
      
      * pinsage-like model on movielens
      
      * the code runs now
      
      * support cuda
      
      * using readonly graph
      
      * using C random walk
      
      * removing profile decorators
      
      * param initialization
      
      * no grad
      
      * leaky relu fixes everything
      
      * train and save
      
      * WIP
      
      * WIP
      
      * WIP
      
      * seems to work
      
      * evaluation output
      
      * swapping order of val/test and train
      
      * debug
      
      * hyperparam tuning
      
      * prior/training dataset split changes
      
      * random walk reorg
      
      * random walk with restart
      
      * signed comparison fix
      
      * migrating random walk to nodeflow
      
      * Revert "migrating random walk to nodeflow"
      
      This reverts commit f2565347cced7c912a58a529b257c033d9f375b7.
      
      * add README and remove dataset
      
      * new endpoint
      
      * lint
      
      * lint x2
      
      * oops forgot test
      
      * including bpr - better for baseline
      
      * addressing fixes
      
      * throwing random walks out from SamplerOp class
      
      * forgot to move RandomWalk; why did this even work?
      
      * removing legacy garbage
      
      * add todo
      
      * address comments
      
      * stupid bug fix
      
      * call ndarrayvector converter to handle traces
      6066fee9
  18. 28 Mar, 2019 1 commit
  19. 04 Mar, 2019 1 commit
  20. 25 Feb, 2019 1 commit
    • Minjie Wang's avatar
      [WIP] [NN] Refactor NN package (#406) · 565f0c88
      Minjie Wang authored
      * refactor graph conv
      
      * docs & tests
      
      * fix lint
      
      * fix lint
      
      * fix lint
      
      * fix lint script
      
      * fix lint
      
      * Update
      
      * Style fix
      
      * Fix style
      
      * Fix style
      
      * Fix gpu case
      
      * Fix for gpu case
      
      * Hotfix edgesoftmax docs
      
      * Handle repeated features
      
      * Add docstring
      
      * Set default arguments
      
      * Remove dropout from nn.conv
      
      * Fix
      
      * add util fn for renaming
      
      * revert gcn_spmv.py
      
      * mx folder
      
      * fix wierd bug
      
      * fix mx
      
      * fix lint
      565f0c88
  21. 22 Feb, 2019 2 commits
  22. 17 Feb, 2019 2 commits
  23. 15 Feb, 2019 1 commit
  24. 13 Feb, 2019 1 commit
  25. 12 Feb, 2019 2 commits
  26. 01 Feb, 2019 1 commit
  27. 12 Jan, 2019 1 commit
    • Minjie Wang's avatar
      [Bugfix] Fix gat residual bug (#355) · ddc2faa5
      Minjie Wang authored
      * fix gat residual bug
      
      * fix the residual addition; output heads; add some shape notations;
      
      * minor
      
      * fix the output head average
      
      * add requests package in requirement
      ddc2faa5
  28. 11 Jan, 2019 1 commit
  29. 10 Jan, 2019 1 commit
  30. 27 Dec, 2018 1 commit
  31. 24 Dec, 2018 1 commit
  32. 17 Dec, 2018 1 commit
    • Minjie Wang's avatar
      [Graph][Model] Cache adj & inc; MX GCN (#307) · f35ac544
      Minjie Wang authored
      * add cache to adj and incmat
      
      * Fix bug in cached adj/inc
      
      * mx gcn spmv runnable; acc debugging...
      
      * fix bug in mx gcn that loss is not correctly calculated
      
      * fix mx utest
      
      * fix as requested
      
      * use raw parameter tensors rather than dense layer
      
      * fix dropout
      
      * Add numbers in readme
      f35ac544
  33. 16 Dec, 2018 1 commit
  34. 07 Dec, 2018 2 commits
    • Zihao Ye's avatar
      [Model]Transformer (#186) · 9f325542
      Zihao Ye authored
      * change the signature of node/edge filter
      
      * upd filter
      
      * Support multi-dimension node feature in SPMV
      
      * push transformer
      
      * remove some experimental settings
      
      * stable version
      
      * hotfix
      
      * upd tutorial
      
      * upd README
      
      * merge
      
      * remove redundency
      
      * remove tqdm
      
      * several changes
      
      * Refactor
      
      * Refactor
      
      * tutorial train
      
      * fixed a bug
      
      * fixed perf issue
      
      * upd
      
      * change dir
      
      * move un-related to contrib
      
      * tutuorial code
      
      * remove redundency
      
      * upd
      
      * upd
      
      * upd
      
      * upd
      
      * improve viz
      
      * universal done
      
      * halt norm
      
      * fixed a bug
      
      * add draw graph
      
      * fixed several bugs
      
      * remove dependency on core
      
      * upd format of README
      
      * trigger
      
      * trigger
      
      * upd viz
      
      * trigger
      
      * add transformer tutorial
      
      * fix tutorial
      
      * fix readme
      
      * small fix on tutorials
      
      * url fix in readme
      
      * fixed func link
      
      * upd
      9f325542
    • Minjie Wang's avatar
      [Bugfix][Model] fix treelstm model (#274) · 3564fdc5
      Minjie Wang authored
      * fix bug after moving batcher out of dgl.data
      
      * disable mx utest
      3564fdc5