djdumpling commited on
Commit
af7108e
·
verified ·
1 Parent(s): a1d5320

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -1
README.md CHANGED
@@ -1,2 +1,18 @@
1
  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.
2
- Reward per step = number of non-zero cells cleared. Episodes end when no legal move remains.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  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.
2
+ Reward per step = number of non-zero cells cleared. Episodes end when no legal move remains.
3
+
4
+ Data is formatted as follows:
5
+ ```
6
+ {
7
+ episode_id: string,
8
+ step: int,
9
+ grid: Arr[10][17],
10
+ action: {"c1": int, "c2": int, "r1": int, "r2": int},
11
+ num_legal_actions: int,
12
+ legal: bool,
13
+ reward: int,
14
+ done: bool,
15
+ agent_tag: string,
16
+ rng_seed: 1
17
+ }
18
+ ```