Apply environment simplifications
mainSimplifications can be applied to make the environment easier for agents to learn. These can be passed via the --simplifications-preset CLI argument or the simplifications argument in the Python API.
Individual Simplifications
teleportAction: Allows agents to instantly move to any location.openDoors: All doors are open by default.selfWateringFlowerPots: Automatically waters all flower pots.noElectricalAction: Disables electrical actions.openContainers: All containers are open by default.
The easy Preset
Setting --simplifications-preset easy applies the following:
teleportActionopenDoorsselfWateringFlowerPotsnoElectricalAction(for non-connectivity tasks)
WARNING The
easypreset does not includeopenContainers. You must add it manually if desired.