"tests/vscode:/vscode.git/clone" did not exist on "ea8b5d7933a659b20127a852645ee1cbc5494f4e"
- 12 May, 2023 1 commit
-
-
Rhett Ying authored
Co-authored-by:Hongzhi (Steve), Chen <chenhongzhi.nkcs@gmail.com>
-
- 11 May, 2023 1 commit
-
-
paoxiaode authored
-
- 10 May, 2023 1 commit
-
-
Rhett Ying authored
-
- 20 Apr, 2023 1 commit
-
-
czkkkkkk authored
-
- 19 Apr, 2023 1 commit
-
-
Mufei Li authored
Co-authored-by:Ubuntu <ubuntu@ip-172-31-36-188.ap-northeast-1.compute.internal>
-
- 10 Apr, 2023 1 commit
-
-
Mufei Li authored
Co-authored-by:Ubuntu <ubuntu@ip-172-31-36-188.ap-northeast-1.compute.internal>
-
- 29 Mar, 2023 1 commit
-
-
Hongzhi (Steve), Chen authored
* pytorch_example * fix --------- Co-authored-by:Ubuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
-
- 22 Mar, 2023 1 commit
-
-
Mufei Li authored
-
- 15 Mar, 2023 1 commit
-
-
Minjie Wang authored
-
- 09 Mar, 2023 1 commit
-
-
DominikaJedynak authored
-
- 22 Feb, 2023 1 commit
-
-
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:Mufei Li <mufeili1996@gmail.com>
-
- 19 Feb, 2023 2 commits
-
-
Hongzhi (Steve), Chen authored
Co-authored-by:Ubuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
-
Hongzhi (Steve), Chen authored
Co-authored-by:Ubuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
-
- 15 Feb, 2023 1 commit
-
-
Tingyu Wang authored
* update cugraph_relgraphconv * update equality test * update cugraph rgcn example * update RelGraphConvAgg based on latest API changes * enable fallback option to fg when fanout is large --------- Co-authored-by:Mufei Li <mufeili1996@gmail.com>
-
- 01 Feb, 2023 1 commit
-
-
Hongzhi (Steve), Chen authored
* remove_mock_sparse_example * mock_sparse_test * remove_mock_sparse --------- Co-authored-by:Steve <ubuntu@ip-172-31-34-29.ap-northeast-1.compute.internal>
-
- 20 Jan, 2023 1 commit
-
-
Hongzhi (Steve), Chen authored
* update * graph Co-authored-by:Steve <ubuntu@ip-172-31-34-29.ap-northeast-1.compute.internal>
-
- 12 Jan, 2023 1 commit
-
-
Xin Yao authored
-
- 06 Jan, 2023 3 commits
-
-
peizhou001 authored
-
peizhou001 authored
-
peizhou001 authored
-
- 05 Jan, 2023 2 commits
-
-
Chang Liu authored
-
rudongyu authored
* gt example * update * update * update * update * lint * Update examples/sparse/graph_transformer.py Co-authored-by:
Mufei Li <mufeili1996@gmail.com> Co-authored-by:
Mufei Li <mufeili1996@gmail.com>
-
- 03 Jan, 2023 1 commit
-
-
Mufei Li authored
* update * Update * Update * Update * Update Co-authored-by:Ubuntu <ubuntu@ip-172-31-36-188.ap-northeast-1.compute.internal>
-
- 29 Dec, 2022 2 commits
-
-
Mufei Li authored
* update * lint * lint * comments Co-authored-by:Ubuntu <ubuntu@ip-172-31-36-188.ap-northeast-1.compute.internal>
-
Minjie Wang authored
* pass gcn * example tests * pass gcnii, hgnn, sgc, sign * black * test file * add torchmetrics * migrate appnp, c_and_s, twirls * fix style * minor fix * fix hypergraphatt and twirls * pass gat * fix torchmetric * lintrunner Co-authored-by:Mufei Li <mufeili1996@gmail.com>
-
- 28 Dec, 2022 1 commit
-
-
Hongzhi (Steve), Chen authored
Co-authored-by:Steve <ubuntu@ip-172-31-34-29.ap-northeast-1.compute.internal>
-
- 18 Dec, 2022 1 commit
-
-
paoxiaode authored
-
- 12 Dec, 2022 1 commit
-
-
Hongzhi (Steve), Chen authored
Co-authored-by:Steve <ubuntu@ip-172-31-34-29.ap-northeast-1.compute.internal>
-
- 09 Dec, 2022 1 commit
-
-
paoxiaode authored
* add GCN sparse matrix example * refine GCN example * refine GCN example * change train function * [Bugfix] Turn off `use_alternate_stream` when TensorAdaptor is not enabled (#4987) * turn off use_alternate_stream when tensoradaptor is not enabled * add docstring * Update (#4997) Co-authored-by:
Ubuntu <ubuntu@ip-172-31-36-188.ap-northeast-1.compute.internal> * refine GCN example * add GCN sparse matrix example * refine GCN example * refine GCN example * change train function * refine GCN example * add highlight comment * refine code * refine code * refine by black and flake8 * refine the comment to 80 char length * refine the comment * refine comment Co-authored-by:
Xin Yao <xiny@nvidia.com> Co-authored-by:
Mufei Li <mufeili1996@gmail.com> Co-authored-by:
Ubuntu <ubuntu@ip-172-31-36-188.ap-northeast-1.compute.internal>
-
- 05 Dec, 2022 2 commits
-
-
Minjie Wang authored
* add twirls * update attention part * update; add val_like to mock_sparse * black
-
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.
-
- 01 Dec, 2022 3 commits
-
-
Tingyu Wang authored
* add entity_sample example * update message * address review, update api call * Update examples/pytorch/rgcn/entity_sample_cugraph_relgraphconv.py Co-authored-by:
Mufei Li <mufeili1996@gmail.com> * Update examples/pytorch/rgcn/entity_sample_cugraph_relgraphconv.py Co-authored-by:
Mufei Li <mufeili1996@gmail.com> * Update examples/pytorch/rgcn/entity_sample_cugraph_relgraphconv.py Co-authored-by:
Mufei Li <mufeili1996@gmail.com> * address review * move example and add description Co-authored-by:
Mufei Li <mufeili1996@gmail.com>
-
Mufei Li authored
* Update * Update * Update * Update Co-authored-by:Ubuntu <ubuntu@ip-172-31-36-188.ap-northeast-1.compute.internal>
-
peizhou001 authored
-
- 28 Nov, 2022 2 commits
-
-
Quan (Andy) Gan authored
* hypergraph attention * address comments
-
Mufei Li authored
* Update * Update * Update * CI Co-authored-by:Ubuntu <ubuntu@ip-172-31-36-188.ap-northeast-1.compute.internal>
-
- 25 Nov, 2022 3 commits
-
-
Hongzhi (Steve), Chen authored
Co-authored-by:Steve <ubuntu@ip-172-31-34-29.ap-northeast-1.compute.internal>
-
Hongzhi (Steve), Chen authored
* black on explain_main * isort * add dot Co-authored-by:Steve <ubuntu@ip-172-31-34-29.ap-northeast-1.compute.internal>
-
Hongzhi (Steve), Chen authored
Co-authored-by:Steve <ubuntu@ip-172-31-34-29.ap-northeast-1.compute.internal>
-
- 23 Nov, 2022 1 commit
-
-
Mufei Li authored
* Update * Update * Update * Update Co-authored-by:Ubuntu <ubuntu@ip-172-31-36-188.ap-northeast-1.compute.internal>
-