Skip to content

Commit

Permalink
chore: Update RobustHopper environment in evaluate.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AdilZouitine committed May 12, 2024
1 parent e875c0d commit 9073d13
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions rrls/evaluate.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
InvertedPendulumParamsBound,
RobustAnt,
RobustHalfCheetah,
RobustHopper,
RobustHumanoidStandUp,
RobustInvertedPendulum,
RobustWalker2d,
Expand Down Expand Up @@ -139,19 +140,19 @@ def generate_evaluation_set(
)

EVALUATION_ROBUST_HOPPER_1D = generate_evaluation_set(
modified_env=RobustWalker2d, # type: ignore
modified_env=RobustHopper, # type: ignore
param_bounds=HopperParamsBound.ONE_DIM.value,
nb_mesh_dim=10,
)

EVALUATION_ROBUST_HOPPER_2D = generate_evaluation_set(
modified_env=RobustWalker2d, # type: ignore
modified_env=RobustHopper, # type: ignore
param_bounds=HopperParamsBound.TWO_DIM.value,
nb_mesh_dim=10,
)

EVALUATION_ROBUST_HOPPER_3D = generate_evaluation_set(
modified_env=RobustWalker2d, # type: ignore
modified_env=RobustHopper, # type: ignore
param_bounds=HopperParamsBound.THREE_DIM.value,
nb_mesh_dim=10,
)

0 comments on commit 9073d13

Please sign in to comment.