18 lines
1.1 KiB
Bash
Executable File
18 lines
1.1 KiB
Bash
Executable File
# can add --skip_running if you've already run the saved policies through the test environments and have appropriate
|
|
# metrics in the out folder. Doing so will generate average metrics quickly.
|
|
|
|
# Experiment A
|
|
python -m eval_experiments
|
|
python -m eval_experiments --method idm
|
|
python -m eval_experiments --method bc --folder='test_policies/bc/expA'
|
|
python -m eval_experiments --method gail --folder='test_policies/gail/expA'
|
|
python -m eval_experiments --method hail --folder='test_policies/hail/expA'
|
|
python -m eval_experiments --method shail --folder='test_policies/shail/expA'
|
|
|
|
# Experiment B
|
|
python -m eval_experiments --locations='[(0,4)]'
|
|
python -m eval_experiments --method idm --locations='[(0,4)]'
|
|
python -m eval_experiments --method bc --folder='test_policies/bc/expB' --locations='[(0,4)]'
|
|
python -m eval_experiments --method gail --folder='test_policies/gail/expB' --locations='[(0,4)]'
|
|
python -m eval_experiments --method hail --folder='test_policies/hail/expB' --locations='[(0,4)]'
|
|
python -m eval_experiments --method shail --folder='test_policies/shail/expB' --locations='[(0,4)]' |