13 lines
		
	
	
		
			273 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			273 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
LOGDIR="results"
 | 
						|
TASK=$1
 | 
						|
ALGO=$2
 | 
						|
 | 
						|
echo "Experiments started."
 | 
						|
for seed in $(seq 0 9)
 | 
						|
do
 | 
						|
    python mujoco_${ALGO}.py --task $TASK --epoch 200 --seed $seed --logdir $LOGDIR > ${TASK}_`date '+%m-%d-%H-%M-%S'`_seed_$seed.txt 2>&1 &
 | 
						|
done
 | 
						|
echo "Experiments ended."
 |