https://arxiv.org/abs/2510.01083
Step 1: Install CUDA 12.6
Step 2: Install Python 3.12.7
Step 3: Install dependencies:
pip install -r requirements.txt
Step 4: Install PyTorch
pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/cu126
To train the model(s) in the paper,
run this command:
python main.py --save_result --env_name "HalfCheetah-v5" --seed 1000
You will get a folder named Result, which contains a JSON file with the experiment results, e.g., [MAMC][HalfCheetah-v5][1000][2025-05-15][Learning Curve][XGHPJR].json
To obtain multiple experiment results, run the following bash.
for ((i = 1000; i < 1010; i += 1))
do
python main.py \
--save_result \
--env_name "HalfCheetah-v5" \
--seed $i
done
