This project evaluates the behaviour of RL algorithms in continual learning settings.
-
Create and activate virtual environment:
- With conda:
conda create -n cl-parking python=3.10conda activate cl-parking
- Alternatively with venv (requires python 3.10):
python -m venv .venvsource .venv/bin/activate
- With conda:
-
Install tools needed to build and install dependencies:
pip install --upgrade pippip install packagingpip install setuptools==69.5.1 wheel
-
Install dependencies in the following order:
pip install numpy==1.24.3pip install torch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 --index-url https://download.pytorch.org/whl/cu121pip install causal-conv1d==1.5.0.post8 --no-build-isolationpip install mamba-ssm==1.2.0.post1 --no-build-isolationpip install -r requirements.txt