Skip to content

Commit

Permalink
🎨 Cleans up the environments
Browse files Browse the repository at this point in the history
  • Loading branch information
rickstaa committed Apr 11, 2021
1 parent 7b7dbe0 commit acd28f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def __init__(
self.observation_space = spaces.Box(-obs_high, obs_high, dtype=np.float32)
self.reward_range = spaces.Box(
np.array([0.0], dtype=np.float32),
np.array([np.finfo(np.float32).max], dtype=np.float32),
np.array([100], dtype=np.float32),
dtype=np.float32,
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@
# The range of values you want to use for each disturbance iteration
"variable_range": np.linspace(0.5, 2.0, num=5, dtype=np.float32),
# Label used in robustness plots.
"label": "r: %s",
"label": "l: %s",
},
"test": {},
}


Expand Down

0 comments on commit acd28f5

Please sign in to comment.