Installation Guideยค
create and activate env
cd pdearena
conda env create --file docker/environment.yml
conda activate pdearena
additionally installing Clifford Neural Layers
pip install "cliffordlayers @ git+https://github.com/microsoft/cliffordlayers"
If you also want to do data generation:
run docker container
cd pdearena
docker run --gpus all -it --rm --user $(id -u):$(id -g) \
-v $(pwd):/code -v /mnt/data:/data --workdir /code -e PYTHONPATH=/code \
pdearena:latest
Note
--gpus all -it --rm --user $(id -u):$(id -g): enables using all GPUs and runs an interactive session with current user's UID/GUID to avoiddockerwriting files as root.-v $(pwd):/code -v /mnt/data:/data --workdir /code: mounts current directory and data directory (i.e. the cloned git repo) to/codeand/datarespectively, and use thecodedirectory as the current working directory.