-
Notifications
You must be signed in to change notification settings - Fork 745
Expand file tree
/
Copy pathexplore.py
More file actions
61 lines (47 loc) · 1.89 KB
/
explore.py
File metadata and controls
61 lines (47 loc) · 1.89 KB
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
53
54
55
56
57
58
59
60
61
# Copyright 2018 The dm_control Authors.
#
# 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
#
# http://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.
# ============================================================================
"""A standalone application for visualizing manipulation tasks."""
import functools
from absl import app
from absl import flags
from dm_control import manipulation
from dm_control import viewer
flags.DEFINE_enum(
'environment_name', None, manipulation.ALL,
'Optional name of an environment to load. If unspecified '
'a prompt will appear to select one.')
FLAGS = flags.FLAGS
# TODO(b/121187817): Consolidate with dm_control/suite/explore.py
def prompt_environment_name(prompt, values):
environment_name = None
while not environment_name:
environment_name = input(prompt)
if not environment_name or values.index(environment_name) < 0:
print('"%s" is not a valid environment name.' % environment_name)
environment_name = None
return environment_name
def main(argv):
del argv
environment_name = FLAGS.environment_name
all_names = list(manipulation.ALL)
if environment_name is None:
print('\n '.join(['Available environments:'] + all_names))
environment_name = prompt_environment_name(
'Please select an environment name: ', all_names)
loader = functools.partial(
manipulation.load, environment_name=environment_name)
viewer.launch(loader)
if __name__ == '__main__':
app.run(main)