CollectHealth

CollectHealth

Action Space

Discrete(8)

Observation Space

Box(0, 255, (60, 80, 3), uint8)

Creation

gymnasium.make("MiniWorld-CollectHealth-v0")

Description

Environment where the agent has to collect health kits and stay alive as long as possible. This is inspired from the VizDoom HealthGathering environment. Please note, however, that the rewards produced by this environment are not directly comparable to those of the VizDoom environment.

Action Space

Num

Action

0

turn left

1

turn right

2

move forward

3

move back

4

pick up

5

drop

6

toggle / activate an object

7

complete task

Observation Space

The observation space is an ndarray with shape (obs_height, obs_width, 3) representing an RGB image of what the agents see.

Rewards

+2 for each time step -100 for dying

Arguments

  • size: size of the room

env = gymnasium.make("Miniworld-CollectHealth-v0", size=16)