fruit-box / README.md
djdumpling's picture
Update README.md
ffb6448 verified
metadata
tags:
  - agent
size_categories:
  - 100K<n<1M

Trajectories for the fruit box game (play here). 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
}