Skip to content

Commit e738c0d

Browse files
committed
Update README.md
1 parent d900eab commit e738c0d

5 files changed

Lines changed: 61 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ env.close()
282282
```
283283

284284
## Curriculum Through Interventions
285-
To provide a convenient way of specifying learning curricula, we introduce intervention actors. At each time step, such an actor takes all the exposed variables of the environ-ment as inputs and may intervene on them. To encourage modularity, one may combine multipleactors in a learning curriculum. This actor is defined by the episode number to start intervening,the episode number to stop intervening, the timestep within the episode it should intervene and theepisode periodicity of interventions.
285+
To provide a convenient way of specifying learning curricula, we introduce intervention actors. At each time step, such an actor takes all the exposed variables of the environment as inputs and may intervene on them. To encourage modularity, one may combine multiple actors in a learning curriculum. This actor is defined by the episode number to start intervening,the episode number to stop intervening, the time step within the episode it should intervene and the episode periodicity of interventions.
286286
<p align=center>
287287
<img src="docs/media/guided_goal.gif" width=200><img src="docs/media/block_interventions.gif" width=200>
288288
</p>

docs/guide/task_setups.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ structured: In this mode the observation space is a lower-dimensional feature ve
149149
time left for task (1), joint_positions (9), joint_velocities (9), end_effector_positions (9). Then for each tool object in the
150150
environment additional 17-dimensions are used representing: type (1), size (3), cartesian_position (3),
151151
quaternion_orientation (4), linear_velocity (3), angular_velocity (3). For each goal subshape in the environment additional
152+
11-dimesnions are used representing: type (1), size (3), cartesian_position (3) and orientation (4). Lastly, if there are any fixed blocks in the environment additional
152153
11-dimesnions are used representing: type (1), size (3), cartesian_position (3) and orientation (4).
153154

154155
.. image:: ../media/structured_observation_space.png

docs/modules/actors/actors.rst

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,54 @@ BaseActorPolicy
1616
:members:
1717

1818
.. automethod:: __init__
19+
20+
PushingActorPolicy
21+
-------------------
22+
.. autoclass:: PushingActorPolicy
23+
:members:
24+
25+
.. automethod:: __init__
26+
27+
28+
PickingActorPolicy
29+
------------------
30+
.. autoclass:: PickingActorPolicy
31+
:members:
32+
33+
.. automethod:: __init__
34+
35+
36+
PickAndPlaceActorPolicy
37+
-----------------------
38+
.. autoclass:: PickAndPlaceActorPolicy
39+
:members:
40+
41+
.. automethod:: __init__
42+
43+
Stacking2ActorPolicy
44+
--------------------
45+
.. autoclass:: Stacking2ActorPolicy
46+
:members:
47+
48+
.. automethod:: __init__
49+
50+
ReacherActorPolicy
51+
--------------------
52+
.. autoclass:: ReacherActorPolicy
53+
:members:
54+
55+
.. automethod:: __init__
56+
57+
GraspingPolicy
58+
---------------
59+
.. autoclass:: GraspingPolicy
60+
:members:
61+
62+
.. automethod:: __init__
63+
64+
RandomActorPolicy
65+
-----------------
66+
.. autoclass:: RandomActorPolicy
67+
:members:
68+
69+
.. automethod:: __init__

docs/modules/sim2real/sim2real.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,10 @@ RealisticRobotWrapper
99
:members:
1010

1111
.. automethod:: __init__
12+
13+
TransferRealWrapper
14+
-------------------
15+
.. autoclass:: TransferReal
16+
:members:
17+
18+
.. automethod:: __init__

docs/modules/task_generators/task_generators.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Task Generators
44
Task
55
----
66
.. automodule:: causal_world.task_generators.task
7-
:members: task_generator
7+
:members: generate_task
88

99
.. automodule:: causal_world.task_generators
1010

0 commit comments

Comments
 (0)