File size: 726 Bytes
ffb6448 a1d5320 af7108e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
---
tags:
- agent
size_categories:
- 100K<n<1M
---
Trajectories for the fruit box game (play [here](https://en.gamesaien.com/game/fruit_box/)). An agent (scripted policy) repeatedly selects axis-aligned rectangles on a fixed 10×17 board of digits 1...9 so that the sum over the rectangle equals 10. Selected cells are cleared (set to 0). There is no gravity and no refill.
Reward per step = number of non-zero cells cleared. Episodes end when no legal move remains.
Data is formatted as follows:
```
{
episode_id: string,
step: int,
grid: Arr[10][17],
action: {"c1": int, "c2": int, "r1": int, "r2": int},
num_legal_actions: int,
legal: bool,
reward: int,
done: bool,
agent_tag: string,
rng_seed: 1
}
``` |