Debugging

This commit is contained in:
Steffen Illium
2022-01-11 14:27:08 +01:00
parent b6c8cbd2e3
commit 0e8a4af740
3 changed files with 11 additions and 11 deletions

View File

@ -28,9 +28,9 @@ class Actions(BaseActions):
class Rewards(BaseRewards):
CLEAN_UP_VALID = 1
CLEAN_UP_VALID = 0.5
CLEAN_UP_FAIL = -0.1
CLEAN_UP_LAST_PIECE = 4
CLEAN_UP_LAST_PIECE = 4.5
class DirtProperties(NamedTuple):

View File

@ -79,11 +79,11 @@ class EnvActions:
class Rewards:
MOVEMENTS_VALID = -0.01
MOVEMENTS_FAIL = -0.1
NOOP = -0.01
USE_DOOR_VALID = -0.01
USE_DOOR_FAIL = -0.1
COLLISION = -0.5
MOVEMENTS_FAIL = -0.10
NOOP = -0.01
USE_DOOR_VALID = -0.00
USE_DOOR_FAIL = -0.10
COLLISION = -0.5
m = EnvActions