Welcome! This site hosts my work and the documentation for gnn-keras3.

Quickstart

From source (recommended for now):

# clone the repo and install in editable mode
git clone https://github.com/arijitcodespace/gnn-keras3.git
cd gnn-keras3
python -m venv .venv && source .venv/bin/activate  # or .venv\Scripts\activate on Windows
pip install -U pip wheel
pip install -e .

Then try an example:

python examples/01_gcn_node_classification.py

Where to next?