Skip to content

Walker

mujorax.WalkerStandEnv

Bases: MjxPlaygroundEnv

DM Control WalkerStand.

Planar bipedal walker; dense reward for keeping the torso upright above a minimum standing height.

Parameters:

Name Type Description Default
config MjxPlaygroundConfig

Static configuration. Defaults to MjxPlaygroundConfig().

None
Source code in mujorax/envs/walker.py
Python
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
class WalkerStandEnv(MjxPlaygroundEnv):
    """
    DM Control `WalkerStand`.

    Planar bipedal walker; dense reward for keeping the torso upright
    above a minimum standing height.

    Parameters
    ----------
    config : MjxPlaygroundConfig (optional)
        Static configuration. Defaults to `MjxPlaygroundConfig()`.
    """

    _PLAYGROUND_NAME = "WalkerStand"

mujorax.WalkerWalkEnv

Bases: MjxPlaygroundEnv

DM Control WalkerWalk.

Same body as WalkerStand; dense reward for matching a target walking speed while staying upright.

Parameters:

Name Type Description Default
config MjxPlaygroundConfig

Static configuration. Defaults to MjxPlaygroundConfig().

None
Source code in mujorax/envs/walker.py
Python
20
21
22
23
24
25
26
27
28
29
30
31
32
33
class WalkerWalkEnv(MjxPlaygroundEnv):
    """
    DM Control `WalkerWalk`.

    Same body as `WalkerStand`; dense reward for matching a target
    walking speed while staying upright.

    Parameters
    ----------
    config : MjxPlaygroundConfig (optional)
        Static configuration. Defaults to `MjxPlaygroundConfig()`.
    """

    _PLAYGROUND_NAME = "WalkerWalk"

mujorax.WalkerRunEnv

Bases: MjxPlaygroundEnv

DM Control WalkerRun.

Same body as WalkerStand; dense reward for matching a target running speed while staying upright.

Parameters:

Name Type Description Default
config MjxPlaygroundConfig

Static configuration. Defaults to MjxPlaygroundConfig().

None
Source code in mujorax/envs/walker.py
Python
36
37
38
39
40
41
42
43
44
45
46
47
48
49
class WalkerRunEnv(MjxPlaygroundEnv):
    """
    DM Control `WalkerRun`.

    Same body as `WalkerStand`; dense reward for matching a target
    running speed while staying upright.

    Parameters
    ----------
    config : MjxPlaygroundConfig (optional)
        Static configuration. Defaults to `MjxPlaygroundConfig()`.
    """

    _PLAYGROUND_NAME = "WalkerRun"