From ea00fb8a59124d98f5c385c7a8ed5cae6a5405e3 Mon Sep 17 00:00:00 2001 From: nyLiao <39255546+nyLiao@users.noreply.github.com> Date: Mon, 4 Nov 2024 17:22:06 +0800 Subject: [PATCH] Update readme --- .github/workflows/docs.yaml | 1 + README.md | 16 ++++++++-------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 9401bfe..6e855a8 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -34,6 +34,7 @@ jobs: files: | benchmark/** examples/** + config/** README.md CHANGELOG.md requirements.txt diff --git a/README.md b/README.md index c4312fd..2e3bc34 100755 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ PyTorch -`pyg_spectral` is a [PyTorch Geometric](https://pyg.org)-based framework for analyzing, implementing, and benchmarking spectral GNNs with effectiveness and efficiency evaluations. Our preliminary paper is available on [arXiv](https://arxiv.org/abs/2406.09675). +`pyg_spectral` is a [PyTorch Geometric](https://pyg.org)-based framework for analyzing, implementing, and benchmarking spectral GNNs with effectiveness and efficiency evaluations. Our preliminary paper is available on [arXiv](https://arxiv.org/abs/2406.09675). **Artifact** and additional results can be found in the [Appendix](Appendix.pdf). > [!IMPORTANT] > ***Why this project?*** @@ -65,33 +65,33 @@ For additional installation of the C++ backend, please refer to [propagations/RE Acquire results on the effectiveness and efficiency of spectral GNNs. Datasets will be automatically downloaded and processed by the code. -#### Run full-batch models (*Table 2, 8, 9*): +#### Run full-batch models: ```bash cd benchmark bash scripts/runfb.sh ``` -#### Run mini-batch models (*Table 3, 10, 11*): +#### Run mini-batch models: ```bash bash scripts/runmb.sh ``` ### Additional Experiments -#### Effect of graph normalization (*Figure 3, 9*): +#### Effect of graph normalization: ```bash -bash scripts/eval_degree.sh +bash scripts/eval_degng.sh ``` Figures can be plotted by: [`benchmark/notebook/fig_degng.ipynb`](benchmark/notebook/fig_degng.ipynb). -#### Effect of propagation hops (*Figure 7, 8*): +#### Effect of propagation hops: ```bash bash scripts/eval_hop.sh ``` Figures can be plotted by: [`benchmark/notebook/fig_hop.ipynb`](benchmark/notebook/fig_hop.ipynb). -#### Frequency response (*Table 12*): +#### Frequency response: ```bash bash scripts/exp_regression.sh ``` @@ -247,5 +247,5 @@ out = model(x, edge_index) ## Misc - This project is licensed under the [MIT LICENSE](LICENSE). -- Please export [CITATION](docs/CITATION.cff) by using "Cite this repository" in the right sidebar. +- Please export [CITATION](CITATION.cff) by using "Cite this repository" in the right sidebar.