Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve docs #8

Merged
merged 5 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
python-version: '3.10'
- name: Install dev-requirements
run: |
sudo apt install pandoc
python -m pip install --upgrade pip
pip install -r requirements-dev.txt --no-cache-dir
shell: bash
Expand Down
2 changes: 2 additions & 0 deletions NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Our dependencies are (see [requirements.txt](requirements.txt)):

We also use additional Python dependencies for development/testing/documentation (see [requirements-dev.txt](requirements-dev.txt)).

The [tutorial notebook](docs/source/notebooks/ogb_biokg_demo.ipynb) make use of the [ogbl-biokg](https://ogb.stanford.edu/docs/linkprop/#ogbl-biokg) dataset, licensed under CC-0;

## Derived work

This directory includes derived work from the following:
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ A Python toolbox to compute topological metrics and statistics for Knowledge Gra

Documentation can be found at https://curly-barnacle-lnejye6.pages.github.io/

For a walkthrough of the main functionalities, we provide an introductory [Jupyter notebook](docs/source/notebooks/ogb_biokg_demo.ipynb).

## Usage

Tested on Ubuntu 20.04, Python >=3.8
Expand All @@ -18,7 +20,7 @@ pip install git+ssh://[email protected]/graphcore-research/kg-topology-toolbox

4\. Import and use:
```python
from kg_topology_toolbox import TopologyToolbox
from kg_topology_toolbox import KGTopologyToolbox
```

## License
Expand All @@ -27,4 +29,4 @@ Copyright (c) 2023 Graphcore Ltd. Licensed under the MIT License.

The included code is released under the MIT license (see [details of the license](LICENSE)).

See [notices](NOTICE.md) for dependencies, credits, derived work and further details.
See [notices](NOTICE.md) for dependencies, credits, derived work and further details.
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"sphinx.ext.intersphinx",
"sphinx.ext.autosectionlabel",
"myst_parser",
"nbsphinx",
]
numpydoc_show_class_members = False
todo_include_todos = True
Expand Down
Binary file added docs/source/images/edge_patterns.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ KG Topology Toolbox
:caption: Contents

User guide <user_guide>
notebooks/ogb_biokg_demo
API reference <API_reference>
Loading
Loading