Created
May 17, 2020 04:42
-
-
Save alexlimh/19c820b889033b0f91d10c6ee42d3216 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#SBATCH --mem=50G | |
#SBATCH -c 8 | |
#SBATCH --gres=gpu:1 | |
#SBATCH -p gpu | |
CKPT=/checkpoint/minghan/${SLURM_JOB_ID} | |
touch $CKPT | |
python dreamer.py \ | |
--load_config True \ | |
--logdir $1 \ | |
--ckptdir $CKPT \ | |
--task $2 \ | |
--expl_behavior $3 \ | |
--use_wm $4 \ | |
--action_repeat $5 > $1/train.log 2>& 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment