forked from google-deepmind/deepmind-research
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch_all.sh
executable file
·52 lines (48 loc) · 1.68 KB
/
launch_all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
# Copyright 2020 DeepMind Technologies Limited.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Script to execute a single configuration on all datasets.
if [[ "$#" -eq 2 ]]; then
readonly CONFIG_NAME="$1"
readonly NUM_SWEEPS="$2"
else
echo "You must provide exactly two arguments - the configuration name and " \
"how many sweeps it contains. For example:"
echo "./launch_all.sh sym_metric_hgn_plus_plus_sweep 1"
exit 2
fi
DATASETS=(
"toy_physics/mass_spring"
"toy_physics/mass_spring_colors"
"toy_physics/mass_spring_colors_friction"
"toy_physics/pendulum"
"toy_physics/pendulum_colors"
"toy_physics/pendulum_colors_friction"
"toy_physics/two_body"
"toy_physics/two_body_colors"
"toy_physics/double_pendulum"
"toy_physics/double_pendulum_colors"
"toy_physics/double_pendulum_colors_friction"
"molecular_dynamics/lj_4"
"molecular_dynamics/lj_16"
"multi_agent/rock_paper_scissors"
"multi_agent/matching_pennies"
"mujoco_room/circle"
"mujoco_room/spiral"
)
readonly DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
for dataset in "${DATASETS[@]}"; do
"${DIR}/launch_local.sh" "${CONFIG_NAME}" "${NUM_SWEEPS}" "${dataset}"
done