Browse State-of-the-Art › RoomEnv-v1
RoomEnv-v1
1 paper with code · 1 benchmark · 1 dataset archive 2025-07-28
The Room environment - v1
We have released a challenging Gymnasium compatible environment. The best strategy for this environment is to have both episodic and semantic memory systems. See the paper for more information.
Prerequisites
- A unix or unix-like x86 machine
- python 3.10 or higher.
- Running in a virtual environment (e.g., conda, virtualenv, etc.) is highly recommended so that you don't mess up with the system python.
- This env is added to the PyPI server. Just run:
pip install room-env
RoomEnv-v1
import gymnasium as gym
env = gym.make("room_env:RoomEnv-v1")
(observation, question), info = env.reset()
rewards = 0
while True:
# There is one different thing in the RoomEnv from the original AAAI-2023 paper:
# The reward is either +1 or -1, instead of +1 or 0.
(observation, question), reward, done, truncated, info = env.step("This is my answer!")
rewards += reward
if done:
break
{
"des_size": "l",
"seed": 42,
"question_prob": 1.0,
"allow_random_human": False,
"allow_random_question": False,
"total_maximum_episode_rewards": 128,
"check_resources": True,
}
If you want to create an env with a different set of parameters, you can do so. For example:
env_params = {"seed": 0,
"allow_random_human": True,
"pretrain_semantic": True}
env = gym.make("room_env:RoomEnv-v1", **env_params)
Take a look at this repo for an actual interaction with this environment to learn a policy.
Data collection
Data is collected from querying ConceptNet APIs. For simplicity, we only collect triples
whose format is (head, atlocation, tail). Here head is one of the 80 MS COCO
dataset categories. This was kept in mind so that later on we can use images as well.
If you want to collect the data manually, then run below:
python collect_data.py
The RoomDes
The DES is part of RoomEnv. You don't have to care about how it works. If you are still curious, you can read below.
You can run the RoomDes by
from room_env.des import RoomDes
des = RoomDes()
des.run(debug=True)
with debug=True it'll print events (i.e., state changes) to the console.
{'resource_changes': {'desk': -1, 'lap': 1},
'state_changes': {'Vincent': {'current_time': 1,
'object_location': {'current': 'desk',
'previous': 'lap'}}}}
{'resource_changes': {}, 'state_changes': {}}
{'resource_changes': {}, 'state_changes': {}}
{'resource_changes': {},
'state_changes': {'Michael': {'current_time': 4,
'object_location': {'current': 'lap',
'previous': 'desk'}},
'Tae': {'current_time': 4,
'object_location': {'current': 'desk',
'previous': 'lap'}}}}
Contributing
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Run
make test && make style && make qualityin the root repo directory, to ensure code quality. - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Cite our paper
@article{Kim_Cochez_Francois-Lavet_Neerincx_Vossen_2023,
title={A Machine with Short-Term, Episodic, and Semantic Memory Systems}, volume={37},
url={https://ojs.aaai.org/index.php/AAAI/article/view/25075},
DOI={10.1609/aaai.v37i1.25075},
abstractNote={Inspired by the cognitive science theory of the explicit human memory systems, we have modeled an agent with short-term, episodic, and semantic memory systems, each of which is modeled with a knowledge graph. To evaluate this system and analyze the behavior of this agent, we designed and released our own reinforcement learning agent environment, “the Room”, where an agent has to learn how to encode, store, and retrieve memories to maximize its return by answering questions. We show that our deep Q-learning based agent successfully learns whether a short-term memory should be forgotten, or rather be stored in the episodic or semantic memory systems. Our experiments indicate that an agent with human-like memory systems can outperform an agent without this memory structure in the environment.},
number={1},
journal={Proceedings of the AAAI Conference on Artificial Intelligence}, author={Kim, Taewoon and Cochez, Michael and Francois-Lavet, Vincent and Neerincx, Mark and Vossen, Piek},
year={2023},
month={Jun.},
pages={48-56}
}
Authors
License
Description from the archive archive 2025-07-28.
Benchmarks archive 2025-07-28
1 leaderboard table shown for this task, 1 with rows (a “benchmark” on this site is a table with at least one row, as on /sota), ordered by row count. “Best model” is the first row in the archive's own order at snapshot; nothing is re-ranked here and metric direction is not recorded in the archive. PwC's Trend sparklines are not in the archive, so that column is omitted.
| Dataset | Best model (first row in archive order) | Paper | Code | Syntology | Compare |
|---|---|---|---|---|---|
| RoomEnv-v1 (2 rows) | HumemAI-v0-capacity=32-semantic-pretrained | A Machine with Short-Term, Episodic, and Semantic Memory Systems | code | Syntology ran 0 of 10 samples · 10 unverified | Compare |
Syntology column: samples harvested from the paper's repositories and executed on synthesized fixtures; “ran” is not a correctness claim and does not order the table. A dash means no Syntology record for that paper, not a recorded non-run. Read from the graph 2026-09-24.
Libraries
Not in the archive: the export carries no per-task library table, so there is nothing to show at snapshot 2025-07-28.
Datasets archive 2025-07-28
1 dataset whose archive record lists this task, ordered by the archive's paper count.
Subtasks archive 2025-07-28
No subtask under this task in the archive's task tree.
Parent tasks archive 2025-07-28
Most implemented papers archive 2025-07-28
1 shown of 1 paper with code (1 tagged with this task in all), ordered by repositories listed in the archive, not by stars (the archive holds no stars, so PwC's “Social” and “Latest” sorts cannot be reproduced). Papers without a page here are shown as plain text.
-
5 Dec 2022 1 repository listed Syntology ran 0 of 10 samples · 10 unverifiedInspired by the cognitive science theory of the explicit human memory systems, we have modeled an agent with short-term, episodic, and semantic memory systems, each of which is modeled with a knowledge graph.
Syntology lines on 1 of the papers shown; no Syntology record for the others (a paper without an arXiv id cannot be joined to the graph, and absence from the graph layer is not a recorded non-run). “Ran” means the sample executed on a synthesized fixture, not that the paper's result was reproduced. Read from the graph 2026-09-24.
Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections