A minimal gridworld environment for embodied question answering.
Project description
A minimal environment to evaluate embodied question answering in interactive agents.
In LangRoom, agents must learn to both move and talk. LangRoom contains four objects with randomly generated colors. Agents have a partial view of the environment and receives questions "what color is ?". In response, they must seek out the correct object and generate the right answer.
💬 Getting Started
Play as a human:
pip install langroom
# Move with WASD
# Speak tokens 1-10 with number keys 1234567890
python run_gui.py
Create an environment instance:
import langroom
env = langroom.LangRoom()
ac = {"move": 0, "talk": 0, "reset": True}
obs = env.step(ac)
📑 Documentation
Task Structure
There are four objects with fixed positions and randomized colors. By default, the agent has a partially observed view of 5x5 grid cells and cannot see all the objects at once. The environment generates questions "what color is <object>
?" and then waits ten timesteps before starting to say "it is <color>
". Agents answer correctly if they output the correct <color>
token at the same timestep as the environment. After each question-answer sequence, the colors of the objects are re-randomized.
Three reward variants are implemented, specified by the task
argument:
answer-only
: agent is rewarded only for saying the correct color at the right timestep and penalized a small amount for saying things at other timesteps. Use this reward structure for comparability to the original paper Lin et al. (2023).answer-and-echo
: agent is rewarded for predicting tokens that the environment generates (including silences and questions), with a larger reward for saying the correct color at the right timestep.echo
: agent is rewarded for predicting all tokens the environment generates equally.
Observation Space
The observation and action space definition follows the embodied environment interface.
image (uint8 (resolution, resolution, 3))
: pixel agent-centric local viewtext (uint32 ())
: ID of the token at the current timesteplog_image (uint8 (resolution, 4 * resolution, 3))
: debugging view with additional information rendered with agent view
Following the embodied
env interface, these keys are also provided in the observation:
reward (float32)
: reward at the current timestepis_first (bool)
: True if this timestep is the first timestep of an episodeis_last (bool)
: True if this timestep is the last timestep of an episode (terminated or truncated)is_terminal (bool)
: True if this timestep is the last timestep of an episode (terminated)
Action Space
LangRoom has a dictionary action space that allows the agent to output actions and tokens (i.e. move and speak) simultaneously at each timestep.
move (int32 ())
: ID of the movement action from movement action space[stay down up right left]
talk (int32 ())
: ID of the generated token
Following the embodied
env interface, the action space also includes:
reset (bool)
: set to True to reset the episode
Vocabulary Size
By default, the vocabulary size is 15 (the minimal number of tokens to ask and answer questions). To test how agents deal with larger vocabularies (and thus larger action spaces), set the vocab_size
argument. Additional words in the vocabulary will be filled with dummy tokens.
🛠️ Development and Issues
New development and extensions to the environment are welcome! For any questions or issues, please open a GitHub issue.
Citation
@article{lin2023learning,
title={Learning to Model the World with Language},
author={Jessy Lin and Yuqing Du and Olivia Watkins and Danijar Hafner and Pieter Abbeel and Dan Klein and Anca Dragan},
year={2023},
eprint={2308.01399},
archivePrefix={arXiv},
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file langroom-0.1.2.tar.gz
.
File metadata
- Download URL: langroom-0.1.2.tar.gz
- Upload date:
- Size: 21.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97bea68bc54cca1d18b390853e5b650e61f29664510cf293f632f7af33adb14c |
|
MD5 | a8c5091044d4d3f481c5675c98233074 |
|
BLAKE2b-256 | e00ff4241c7ddb990c35113c75de3b110ce52c220d9add846ee73c45f0f7cd73 |
File details
Details for the file langroom-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: langroom-0.1.2-py3-none-any.whl
- Upload date:
- Size: 28.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2910f08aa8e35a445333fce0af262a0a862444ca7e803ed2745b879436be3318 |
|
MD5 | de55227a8bb2e83da7828552a4b03a92 |
|
BLAKE2b-256 | cb7edcb06e0ce4fab6272e65b572b6f8437b0728fd72747bed2e877d3c0a18f4 |