Knowledge Graph Autoencoder Training Environment, bridging PyG encoders and TorchKGE decoders.
Project description
Knowledge Graph Autoencoder Training Environment (KGATE)
KGATE is a knowledge graph embedding library bridging the encoders from Pytorch Geometric and the decoders from TorchKGE.
This tool relies heavily on the performances of TorchKGE and its numerous implemented modules for link prediction, negative sampling and model evaluation. The main goal here is to address the lack of encoders in the original library, who is unfortunately not maintained anymore.
Installation
It is recommended to download the configuration template alongside your installation (see Usage below).
With pip
pip install kgate
From source
Clone this repository and install it in a virtual environment like so:
git clone git@github.com:BAUDOTlab/KGATE.git
python -m venv kge_env
source kge_env/bin/activate
Join the development
KGATE is developed using Poetry. If you want to contribute to KGATE or make your own modifications, follow these steps:
1. Install Poetry
pip install poetry
2. Clone the repository
git clone git@github.com:BAUDOTlab/KGATE.git
3. Install dependencies
cd KGATE
poetry install
(usage)=
Usage
KGATE is meant to be a self-sufficient training environment for knowledge graph embedding that requires very little code to work but can easily be expanded or modified. Everything stems from the Architect class, which holds all the necessary attributes and methods to fully train and test a KGE model following the autoencoder architecture, as well as run inference.
The configuration file lets you iterate quickly without changing your code. See the template to learn what the different options do.
At the very least, KGATE expects the Knowledge Graph to be given as a pandas dataframe or a CSV file with the columns "from", "to" and "rel", corresponding respectively to the head nodes, tail nodes and relation typesof the triplets, with one triplet per row. Any extra columns are ignored. In addition, a metadata dataframe can be submitted (can also be a CSV) to map each node with their type, requiring the columns "id" and "type". Extra columns are likewise ignored.
from kgate import Architect
config_path = "/path/to/your/config.toml"
architect = Architect(config_path = config_path)
# Train the model using KG and hyperparameters specified in the configuration
architect.train_model()
# Test the trained model, using the best checkpoint
architect.test()
# Run KG completion task, the empty list is the element that will be predicted
known_heads = []
known_relations = []
known_tails = []
architect.infer(known_heads, known_relations, known_tails)
For a more detailed example and specific methods that are available in the package, see the upcoming readthedocs documentation.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kgate-0.3.0.tar.gz.
File metadata
- Download URL: kgate-0.3.0.tar.gz
- Upload date:
- Size: 74.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.3.2 CPython/3.14.3 Linux/6.19.10-arch1-1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59bee6acd19495a4a689e03af77fa750a2e0a50e69c20e0c001ff341c866e317
|
|
| MD5 |
1a3336cbff77bb06585c8d483d215d45
|
|
| BLAKE2b-256 |
a385e1a03e1a44dbc59268eb4b96112455f106d60f48108dcb976af6249be17c
|
File details
Details for the file kgate-0.3.0-py3-none-any.whl.
File metadata
- Download URL: kgate-0.3.0-py3-none-any.whl
- Upload date:
- Size: 84.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.3.2 CPython/3.14.3 Linux/6.19.10-arch1-1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1d1f91ae11c53346c3ffdfa8900b49475a843122152d6f417440642a15c4b71
|
|
| MD5 |
93a196c89263854726a024362d5bc2a0
|
|
| BLAKE2b-256 |
eab86adbfb3641bccbfc7ce91b6d14165c319f077a2d796ffef43a9dc7bb3de1
|