From f1c4ed0ab576869690ea4f09b141e17c109f1bdb Mon Sep 17 00:00:00 2001 From: Kyle Montemayor Date: Mon, 10 Feb 2025 16:17:27 -0800 Subject: [PATCH] Use absolute paths for doc links --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ca2e184..e4daa04 100644 --- a/README.md +++ b/README.md @@ -30,12 +30,12 @@ GiGL contains six components, each designed to facilitate the platforms end-to-e | Component | Source Code | Documentation | |-------------------|---------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| -| Config Populator | [here](python/gigl/src/config_populator/config_populator.py) | [here](docs/sphinx/source/components/config_populator.md) | -| Data Preprocessor | [here](python/gigl/src/data_preprocessor/data_preprocessor.py) | [here](docs/sphinx/source/components/data_preprocessor.md) | -| Subgraph Sampler | [here](scala/subgraph_sampler/src/main/scala/Main.scala) | [here](docs/sphinx/source/components/subgraph_sampler.md) | -| Split Generator | [here](scala/split_generator/src/main/scala/Main.scala) | [here](docs/sphinx/source/components/split_generator.md) | -| Trainer | [here](python/gigl/src/training/trainer.py) | [here](docs/sphinx/source/components/trainer.md) | -| Inferencer | [here](python/gigl/src/inference/gnn_inferencer.py) | [here](docs/sphinx/source/components/inferencer.md) | +| Config Populator | [here](/python/gigl/src/config_populator/config_populator.py) | [here](/docs/sphinx/source/components/config_populator.md) | +| Data Preprocessor | [here](/python/gigl/src/data_preprocessor/data_preprocessor.py) | [here](/docs/sphinx/source/components/data_preprocessor.md) | +| Subgraph Sampler | [here](/scala/subgraph_sampler/src/main/scala/Main.scala) | [here](/docs/sphinx/source/components/subgraph_sampler.md) | +| Split Generator | [here](/scala/split_generator/src/main/scala/Main.scala) | [here](/docs/sphinx/source/components/split_generator.md) | +| Trainer | [here](/python/gigl/src/training/trainer.py) | [here](/docs/sphinx/source/components/trainer.md) | +| Inferencer | [here](/python/gigl/src/inference/gnn_inferencer.py) | [here](/docs/sphinx/source/components/inferencer.md) | The figure below illustrates at a high level how all the components work together for and end-to-end GiGL pipeline.