mirror of
https://github.com/wassname/iris_bigvae.git
synced 2026-09-09 11:24:31 +08:00
Code release.
This commit is contained in:
Executable
+29
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
fps=15
|
||||
header=1
|
||||
mode="episode_replay"
|
||||
|
||||
while [ "$1" != "" ]; do
|
||||
case $1 in
|
||||
-f | --fps )
|
||||
shift
|
||||
fps=$1
|
||||
;;
|
||||
-h | --no-header )
|
||||
header=0
|
||||
;;
|
||||
-w | --world-model )
|
||||
mode="world_model"
|
||||
;;
|
||||
-a | --agent )
|
||||
mode="agent"
|
||||
;;
|
||||
* )
|
||||
echo Invalid usage : $1
|
||||
exit 1
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
python src/play.py hydra.run.dir=. hydra.output_subdir=null +mode="${mode}" +fps="${fps}" +header="${header}"
|
||||
Reference in New Issue
Block a user