This repository contains the replication of the GRASPED model from the BPAD project. It includes modifications to the GRASPED model and additional results from various runs.
For more details on the entire BPAD project, including other models, please refer to the original repository: BPAD - Behavioral Prediction for Adaptive Design.
The directory structure is adapted from the original repository, focusing on the GRASPED model. It includes the following new files:
environment.yml
: Conda environment file to recreate the environment for the project.requirements.txt
: Python package dependencies.
For more information on the overall file structure and the other models, refer to the original BPAD repository.
To replicate the experiments and results, follow these steps:
Start by cloning this repository to your local machine:
git clone https://github.com/your_username/your_repo_name.git
cd your_repo_name
Ensure that you have Conda installed. Then, create and activate the environment by running the following commands:
conda env create -f environment.yml
conda activate gruae
Use pip to install any additional dependencies that might not be covered in the environment.yml file:
pip install -r requirements.txt
- The original GRASPED model and BPAD repository by guanwei49.
- This repository serves as a replication of the GRASPED model from the BPAD project. For more details on the original work, please visit the BPAD repository.