Skip to content

Commit e15871a

Browse files
committed
HW5c: fix point mass env description to be accurate
1 parent 2a9e4de commit e15871a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hw5/meta/point_mass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class PointEnv(Env):
77
"""
88
point mass on a 2-D plane
9-
two tasks: move to (-1, -1) or move to (1,1)
9+
goals are sampled randomly from a square
1010
"""
1111

1212
def __init__(self, num_tasks=1):

hw5/meta/point_mass_observed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class ObservedPointEnv(Env):
77
"""
88
point mass on a 2-D plane
9-
two tasks: move to (-1, -1) or move to (1,1)
9+
four tasks: move to (-10, -10), (-10, 10), (10, -10), (10, 10)
1010
1111
Problem 1: augment the observation with a one-hot vector encoding the task ID
1212
- change the dimension of the observation space

0 commit comments

Comments
 (0)