1. 09 Mar, 2023 1 commit
  2. 22 Feb, 2023 1 commit
    • Tingyu Wang's avatar
      [Model] Add `dgl.nn.CuGraphSAGEConv` model (#5137) · bcf9923b
      Tingyu Wang authored
      
      
      * add CuGraphSAGEConv model
      
      * fix lint issues
      
      * update model to reflect changes in make_mfg_csr(), move max_in_degree to forward()
      
      * lintrunner
      
      * allow reset_parameters()
      
      * remove norm option, simplify test
      
      * allow full graph fallback option, add example
      
      * address comments
      
      * address reviews
      
      ---------
      Co-authored-by: default avatarMufei Li <mufeili1996@gmail.com>
      bcf9923b
  3. 19 Feb, 2023 2 commits
  4. 15 Feb, 2023 1 commit
  5. 01 Feb, 2023 1 commit
  6. 20 Jan, 2023 1 commit
  7. 12 Jan, 2023 1 commit
  8. 06 Jan, 2023 3 commits
  9. 05 Jan, 2023 2 commits
  10. 03 Jan, 2023 1 commit
  11. 29 Dec, 2022 2 commits
  12. 28 Dec, 2022 1 commit
  13. 18 Dec, 2022 1 commit
  14. 12 Dec, 2022 1 commit
  15. 09 Dec, 2022 1 commit
  16. 05 Dec, 2022 2 commits
    • Minjie Wang's avatar
      [Sparse][Example] Add TWIRLS example in sparse API (#4922) · c604366d
      Minjie Wang authored
      * add twirls
      
      * update attention part
      
      * update; add val_like to mock_sparse
      
      * black
      c604366d
    • Dylan's avatar
      GCN example correction (#4969) (#4976) · b84de903
      Dylan authored
      Correction like mentioned in #4969 
      
      I noticed that there is a normalisation step on line 97 while the normalised values are not used downstream. Even if this was meant to show the normalisation step, it would not be calculating the normalisation step described in the CGN paper. The paper considers both in and out degrees while the normalisation in the code only describes normalisation using the in degrees.
      In the end, the normalised values are assigned to g.ndata["norm"] but these values are not used afterwards.
      
      Having a normalisation step here is also unnecessary since the GraphConv layer that is used already takes care of the normalisation. https://docs.dgl.ai/en/0.9.x/_modules/dgl/nn/pytorch/conv/graphconv.html#GraphConv
      
      It confused me for a second thinking that I had to do the normalisation myself but this is already handled by the GraphConf.
      b84de903
  17. 01 Dec, 2022 3 commits
  18. 28 Nov, 2022 2 commits
  19. 25 Nov, 2022 3 commits
  20. 23 Nov, 2022 1 commit
  21. 22 Nov, 2022 1 commit
  22. 21 Nov, 2022 2 commits
  23. 17 Nov, 2022 2 commits
  24. 15 Nov, 2022 1 commit
  25. 09 Nov, 2022 1 commit
  26. 03 Nov, 2022 1 commit
    • Ereboas's avatar
      [Example] Update SEAL+NGNN for ogbl-citation2 (#4776) · 7c788f53
      Ereboas authored
      
      
      * Use black for formatting
      
      * limit line width to 80 characters.
      
      * Use a backslash instead of directly concatenating
      
      * file structure adjustment.
      
      * file structure adjustment(2)
      
      * codes for citation2
      
      * format slight adjustment
      
      * adjust format in models.py
      
      * now it runs normally for all datasets.
      
      * add comments; adjust code order.
      
      * adjust indenting.
      Co-authored-by: default avatarMufei Li <mufeili1996@gmail.com>
      7c788f53
  27. 27 Oct, 2022 1 commit
    • Ereboas's avatar
      [Example] SEAL+NGNN for ogbl-citation2 (#4772) · f9805ef1
      Ereboas authored
      
      
      * Use black for formatting
      
      * limit line width to 80 characters.
      
      * Use a backslash instead of directly concatenating
      
      * file structure adjustment.
      
      * file structure adjustment(2)
      
      * codes for citation2
      
      * format slight adjustment
      
      * adjust format in models.py
      
      * now it runs normally for all datasets.
      Co-authored-by: default avatarMufei Li <mufeili1996@gmail.com>
      f9805ef1