This repository contains the implementation of GraphLA, a leader-aware GNN for link prediction on animal social networks.
- Copy the folder
notebook/GraphLAto your Google Drive. - Open the
main.ipynbnotebook in Colab. - Run all cells (the notebook will execute all scripts automatically).
git clone <repo_url>
cd GraphLA
# Using venv
python3 -m venv GraphLA
source GraphLA/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
python main.py
deactivate
# Using conda
conda create -n GraphLA python=3.x
conda activate GraphLA
python main.py
conda deactivate