# CONG-RL **Repository Path**: Howie0126/cong-rl ## Basic Information - **Project Name**: CONG-RL - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-26 - **Last Updated**: 2024-03-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Multi-Objective Evolutionary Reinforcement Learning ## Setup environment Install Mujoco backend with a bash script all at once, details at [Mujoco's official github](https://github.com/openai/mujoco-py) ```bash bash setup.sh ``` With python >= 3.7 ```bash pip install -r requirements.txt ``` ## Config environments All environments' file in ***environments*** folder ## Run MOPDERL ```bash cd MOPDERL/ # <-- cd to MOPDERL directory python run_mo_pderl.py -env=MO-...-logdir=your/dir -disable_wandb -seed=123 -boundary_only -save_ckpt=0 # <-- Run #python run_mo_pderl.py -env=MO-... -logdir=your/dir -disable_wandb -seed=987263145 -boundary_only -save_ckpt=0 -checkpoint # <-- Continue running latest run after disconnected #python run_mo_pderl.py -env=MO-... -logdir=your/dir -disable_wandb -seed=987263145 -boundary_only -save_ckpt=0 -checkpoint -checkpoint_id=10 # <-- Continue running specific run after disconnected ``` Other config please seek into *run_mo_pderl.py* file: ```python python run_mo_pderl.py -h ``` Results for each run will be at: "*your_save_dir/environment_name/run_***/archive*" ## Credit This repository is largely based on the code of [ERL](https://github.com/ShawK91/Evolutionary-Reinforcement-Learning) and [MORL](https://github.com/LucasAlegre/morl-baselines).