task stringclasses 29
values | state stringlengths 68 671 | instructions stringlengths 28 143 | criteria_keys listlengths 1 8 | criteria_values listlengths 1 8 | label_alias stringclasses 8
values | label_key stringlengths 1 20 | meta stringlengths 65 336 |
|---|---|---|---|---|---|---|---|
debate.winner | {"question": "Remote-first improves productivity", "side_a": {"label": "support", "claims": [{"text": "Attrition dropped 20% after remote policy", "hard_evidence": true}]}, "side_b": {"label": "oppose", "claims": [{"text": "Offices look empty and sad", "hard_evidence": false}]}, "rubric": "Prefer hard evidence over vib... | Given the claims and evidence flags, who should win the debate? One letter. | [
"A",
"B"
] | [
"oppose: Side B — oppose the proposal",
"support: Side A — support the proposal"
] | B | support | {"gym": "debate_judge", "topic_id": "remote_first", "topic_split": "train", "pro_ev": 1, "con_ev": 0, "schema": "choice", "hard": false, "n_options": 2} |
piece | {"board_2d_map": "\n a b c d e f g h\n8 r . b q k b n r 8\n7 . . p p . p p p 7\n6 . . n . . . . B 6\n5 p p . . p . . . 5\n4 . . . P P . . . 4\n3 . . . . . N . . 3\n2 P P P . . P P P 2\n1 R N . Q K B . R 1\n a b c d e f g h\n", "fen": "r1bqkbnr/2pp1ppp/2n4B/pp2p3/3PP3/5N2/PPP2PPP/RN1QKB1R b kq - 1 6", "side_to_move": ... | Use board_2d_map. Pick one piece that should move this turn. Prefer development, center control, and king safety. Reply with the option letter. | [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
] | [
"g8: black knight on g8",
"a5: black pawn on a5",
"c8: black bishop on c8",
"g7: black pawn on g7",
"d7: black pawn on d7",
"b5: black pawn on b5",
"e5: black pawn on e5",
"d8: black queen on d8"
] | A | g8 | {"label_source": "stockfish", "best_uci": "g8h6", "n_options": 8, "gym": "chess", "task_schema": "staged_v1"} |
ca.cell_alive | {"legend": "Cellular automaton rule B3/S23 (B3/S23): a dead cell becomes live with exactly {3} neighbors; a live cell stays live with {2, 3} neighbors; otherwise dies/stays dead. 'O'=live, '.'=dead. Torus=no (edges have fewer neighbors).", "rule": "B3/S23", "query_cell": {"row": 2, "col": 7, "index_origin": "0-based to... | Apply the legend rule for exactly 2 step(s). Will the cell at row=2, col=7 (0-based) be live? | [
"A",
"B"
] | [
"no: Cell will be dead (.)",
"yes: Cell will be live (O)"
] | A | no | {"gym": "cellular_automata", "rule": "B3/S23", "n_steps": 2, "grid_size": "6x8", "query_cell": [2, 7], "schema": "choice", "hard": false, "n_options": 2} |
gridworld.move | {"grid_map": "\n4 4 4 4 4 4 4\n4 D 3 u u 4 4\n4 3 u 3 3 3 4\n4 Y 3 4 3 3 4\n4 4 3 3 3 3 4\n4 4 3 u 3 3 4\n4 4 4 4 4 4 4\n", "legend": "'4': Wall, 'Y': Player, 'D': Goal, 'u': Deadly Trap, '3': Floor"} | Inspect the 2D GridWorld map. Choose among the listed legal move directions. | [
"A",
"B"
] | [
"RIGHT: Move RIGHT",
"UP: Move UP"
] | B | UP | {"gym": "gridworld", "grid_size": "7x7", "aug_rot_k": 2, "aug_flip_h": true, "spawn": "random", "symbol_remap": {"wall": "4", "player": "Y", "goal": "D", "hazard": "u", "floor": "3"}, "task_schema": "action_v2", "legal_dirs": ["RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 2} |
piece | {"board_2d_map": "\n a b c d e f g h\n8 r . b . k b . r 8\n7 . . p p . p p . 7\n6 p . p . . . . p 6\n5 . . n . N . . . 5\n4 . . P . . . . . 4\n3 . . N . . . . . 3\n2 P P . P . P P P 2\n1 R . B Q . R K . 1\n a b c d e f g h\n", "fen": "r1b1kb1r/2pp1pp1/p1p4p/2n1N3/2P5/2N5/PP1P1PPP/R1BQ1RK1 b kq - 0 10", "side_to_move"... | Use board_2d_map. Pick one piece that should move this turn. Prefer development, center control, and king safety. Reply with the option letter. | [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
] | [
"a6: black pawn on a6",
"f7: black pawn on f7",
"e8: black king on e8",
"d7: black pawn on d7",
"g7: black pawn on g7",
"f8: black bishop on f8",
"a8: black rook on a8",
"c5: black knight on c5"
] | F | f8 | {"label_source": "stockfish", "best_uci": "f8d6", "n_options": 8, "gym": "chess", "task_schema": "staged_v1"} |
sokoban.direction | {"legend": "'#': Wall, '@': Player, '$': Box, '.': Target, '*': Box on target, '+': Player on target, ' ': Empty floor", "grid_map": "\n######\n# #\n# #\n#. #\n#$ #\n#@* #\n# ##\n######\n"} | Inspect the 2D Sokoban map. Choose among the listed legal move directions. | [
"A",
"B",
"C"
] | [
"UP: Move UP",
"RIGHT: Move RIGHT",
"DOWN: Move DOWN"
] | A | UP | {"gym": "sokoban", "level_size": "6x8", "aug_rot_k": 1, "aug_flip_h": true, "symbol_remap": {"wall": "#", "player": "@", "box": "$", "target": ".", "box_on_target": "*", "player_on_target": "+", "floor": " "}, "task_schema": "action_v2", "legal_dirs": ["DOWN", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_optio... |
debate.confidence | {"question": "We should rewrite the backend in Rust", "side_b": {"label": "oppose", "claims": [{"text": "Rewrite estimated at 2 quarters with feature freeze", "hard_evidence": true}, {"text": "I dream in garbage collectors", "hard_evidence": false}]}, "side_a": {"label": "support", "claims": [{"text": "p99 latency is 4... | How confident should we be in the judgment? Reply with one level letter. | [
"A",
"B",
"C"
] | [
"0: low confidence",
"1: medium confidence",
"2: high confidence"
] | A | 0 | {"gym": "debate_judge", "topic_id": "rewrite_backend", "topic_split": "train", "pro_ev": 1, "con_ev": 1, "schema_hint": "score", "schema": "choice", "hard": false, "n_options": 3} |
game2048.slide | {"highest_tile": 128, "legend": "Numbers represent tile values; '.' represents an empty cell.", "grid_map": "\n+------+------+------+------+\n| 128 | 32 | 8 | . |\n+------+------+------+------+\n| 2 | 16 | 8 | . |\n+------+------+------+------+\n| 8 | 2 | . | . |\n+------+------+------+-... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C",
"D"
] | [
"RIGHT: Slide RIGHT",
"UP: Slide UP",
"LEFT: Slide LEFT",
"DOWN: Slide DOWN"
] | B | UP | {"gym": "game2048", "max_tile": 128, "aug_rot_k": 0, "aug_flip_h": false, "empty_cells_count": 7, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 4} |
game2048.slide | {"highest_tile": 64, "grid_map": "\n+------+------+------+------+\n| 64 | 8 | 8 | . |\n+------+------+------+------+\n| 2 | 16 | . | . |\n+------+------+------+------+\n| 32 | 4 | 2 | . |\n+------+------+------+------+\n| 2 | . | . | . |\n+------+------+------+------+\n", "l... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C"
] | [
"LEFT: Slide LEFT",
"UP: Slide UP",
"RIGHT: Slide RIGHT"
] | A | LEFT | {"gym": "game2048", "max_tile": 64, "aug_rot_k": 3, "aug_flip_h": true, "empty_cells_count": 7, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 3} |
alloc.can_fund_all | {"requests": [{"id": "security_patch", "title": "Critical security patch", "cost": 33, "urgency": 3}, {"id": "customer_refund_pool", "title": "Customer refund reserve", "cost": 67, "urgency": 2}, {"id": "hiring_bonus", "title": "Hiring referral bonuses", "cost": 43, "urgency": 1}], "policy": "Fund at most one request p... | Would summing all costs fit under budget_remaining? Answer with one letter. | [
"A",
"B"
] | [
"no: Budget is insufficient for all requests",
"yes: Budget covers the sum of all request costs"
] | B | yes | {"gym": "resource_allocator", "schema_hint": "noul", "schema": "choice", "hard": false, "n_options": 2} |
piece | {"board_2d_map": "\n a b c d e f g h\n8 r n b q k b . r 8\n7 . p . . . p p p 7\n6 . . p . p n . . 6\n5 . P . p . . . . 5\n4 p . . P . . . . 4\n3 . . P . P N P . 3\n2 P . . . . P . P 2\n1 R N B Q K B . R 1\n a b c d e f g h\n", "fen": "rnbqkb1r/1p3ppp/2p1pn2/1P1p4/p2P4/2P1PNP1/P4P1P/RNBQKB1R b KQkq - 1 7", "side_to_mo... | Use board_2d_map. Pick one piece that should move this turn. Prefer development, center control, and king safety. Reply with the option letter. | [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
] | [
"g7: black pawn on g7",
"b8: black knight on b8",
"c8: black bishop on c8",
"h7: black pawn on h7",
"b7: black pawn on b7",
"d8: black queen on d8",
"e6: black pawn on e6",
"h8: black rook on h8"
] | F | d8 | {"label_source": "stockfish", "best_uci": "d8a5", "n_options": 8, "gym": "chess", "task_schema": "staged_v1"} |
game2048.slide | {"legend": "Numbers represent tile values; '.' represents an empty cell.", "grid_map": "\n+------+------+------+------+\n| . | . | 4 | 2 |\n+------+------+------+------+\n| . | 2 | 16 | 32 |\n+------+------+------+------+\n| . | . | 128 | 16 |\n+------+------+------+------+\n| 4 | 2... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C"
] | [
"DOWN: Slide DOWN",
"LEFT: Slide LEFT",
"UP: Slide UP"
] | C | UP | {"gym": "game2048", "max_tile": 128, "aug_rot_k": 0, "aug_flip_h": true, "empty_cells_count": 5, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "UP"], "schema": "choice", "hard": false, "n_options": 3} |
connect4.threat_alert | {"grid_map": "\n 1 2 3 4 5 6 7\n+---------------+ +\n| . R . . . . . |\n| . R . . . . . |\n| . R . . Y . . |\n| R Y Y Y R . . |\n| Y R R Y Y R Y |\n| R Y Y R Y R R |\n+===============+\n", "turn": "Yellow (Y)", "legend": "'R': Red disc, 'Y': Yellow disc, '.': Empty slot. Columns are 1 to 7."} | Does the opponent have an immediate 4-in-a-row winning threat next turn? | [
"A",
"B"
] | [
"yes: Opponent has a 4-in-a-row threat next turn",
"no: No immediate winning threat from opponent"
] | A | yes | {"gym": "connect4", "schema": "noul", "task_schema": "action_v2"} |
connect4.win_now_alert | {"grid_map": "\n 1 2 3 4 5 6 7\n+---------------+ +\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . Y . . . . . |\n| . Y R R R Y R |\n+===============+\n", "turn": "Yellow (Y)", "legend": "'R': Red disc, 'Y': Yellow disc, '.': Empty slot. Columns are 1 to 7."} | Can the side to move win immediately with one drop this turn? | [
"A",
"B"
] | [
"yes: Current side can win immediately this turn",
"no: No immediate winning drop this turn"
] | B | no | {"gym": "connect4", "schema": "noul", "task_schema": "action_v2"} |
alloc.pressure | {"policy": "Fund at most one request per step; prefer higher urgency among affordable.", "requests": [{"id": "hiring_bonus", "title": "Hiring referral bonuses", "cost": 42, "urgency": 1}, {"id": "customer_refund_pool", "title": "Customer refund reserve", "cost": 70, "urgency": 2}, {"id": "design_sprint", "title": "Desi... | Rate overall budget pressure. Reply with one level letter. | [
"A",
"B",
"C"
] | [
"2: high — demand exceeds budget",
"1: medium — close to capacity",
"0: low — budget comfortably covers demand"
] | C | 0 | {"gym": "resource_allocator", "schema_hint": "score", "ratio": 0.7664670658682635, "schema": "choice", "hard": false, "n_options": 3} |
nlp.cloze | {"sentence": "The Amylostereaceae produce crust like dry and leathery corky [___] bodies on the bark of infested trees.", "legend": "Select the most contextually appropriate word to fill in the blank."} | Which word correctly completes the sentence? Reply with one option letter. | [
"A",
"B",
"C",
"D"
] | [
"micah: micah",
"seven: seven",
"tauri: tauri",
"fruit: fruit"
] | D | fruit | {"gym": "nlp_cloze", "kind": "cloze", "corpus": "wikitext-2-raw-v1", "corpus_split": "train", "doc_id": 67466, "answer_len": 5, "schema": "choice", "hard": false, "n_options": 4} |
game2048.slide | {"legend": "Numbers represent tile values; '.' represents an empty cell.", "highest_tile": 8, "grid_map": "\n+------+------+------+------+\n| . | . | . | . |\n+------+------+------+------+\n| . | . | . | . |\n+------+------+------+------+\n| 4 | . | . | 2 |\n+------+------+------+---... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C",
"D"
] | [
"RIGHT: Slide RIGHT",
"LEFT: Slide LEFT",
"DOWN: Slide DOWN",
"UP: Slide UP"
] | B | LEFT | {"gym": "game2048", "max_tile": 8, "aug_rot_k": 3, "aug_flip_h": false, "empty_cells_count": 12, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 4} |
game2048.slide | {"grid_map": "\n+------+------+------+------+\n| 2 | 4 | 2 | 64 |\n+------+------+------+------+\n| . | . | 8 | 16 |\n+------+------+------+------+\n| . | . | . | 32 |\n+------+------+------+------+\n| . | . | . | 2 |\n+------+------+------+------+\n", "legend": "Numbers rep... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B"
] | [
"LEFT: Slide LEFT",
"DOWN: Slide DOWN"
] | B | DOWN | {"gym": "game2048", "max_tile": 64, "aug_rot_k": 1, "aug_flip_h": true, "empty_cells_count": 8, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT"], "schema": "choice", "hard": false, "n_options": 2} |
gridworld.move | {"legend": "'K': Wall, 'Q': Player, 'r': Goal, 'W': Deadly Trap, '2': Floor", "grid_map": "\nK K K K K K K K K\nK 2 K K K W 2 2 K\nK 2 2 2 2 Q W 2 K\nK 2 2 2 W r 2 2 K\nK 2 2 K 2 2 K 2 K\nK 2 2 2 2 2 W 2 K\nK 2 2 W 2 2 2 2 K\nK K K K K K K K K\n"} | Inspect the 2D GridWorld map. Choose among the listed legal move directions. | [
"A",
"B"
] | [
"DOWN: Move DOWN",
"LEFT: Move LEFT"
] | A | DOWN | {"gym": "gridworld", "grid_size": "8x9", "aug_rot_k": 0, "aug_flip_h": false, "spawn": "random", "symbol_remap": {"wall": "K", "player": "Q", "goal": "r", "hazard": "W", "floor": "2"}, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT"], "schema": "choice", "hard": false, "n_options": 2} |
gridworld.hazard_alert | {"grid_map": "\naaaaaaa\n \na~~aA~a\n \na~~A~~a\n \na~~~A~a\n \nadB~~~a\n \na~a~~Aa\n \na~~~~~a\n \na~~~~Aa\n \naaaaaaa\n", "legend": "'a': Wall, 'B': Player, 'd': Goal, 'A': Deadly Trap, '~': Floor"} | Is the player (@) currently adjacent to a deadly trap (X)? | [
"A",
"B"
] | [
"yes: Immediate deadly trap nearby",
"no: Surroundings safe"
] | B | no | {"gym": "gridworld", "schema": "noul", "task_schema": "action_v2", "symbol_remap": {"wall": "a", "player": "B", "goal": "d", "hazard": "A", "floor": "~"}} |
connect4.drop | {"legend": "'R': Red disc, 'Y': Yellow disc, '.': Empty slot. Columns are 1 to 7.", "grid_map": "\n 1 2 3 4 5 6 7\n+---------------+ +\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . . . . Y . . |\n| . . . . R Y R |\n+===============+\n", "turn": "Red (R)"} | Inspect the 7x6 Connect Four board. Choose among the listed legal columns to drop your disc. | [
"A",
"B",
"C"
] | [
"1: Drop in Column 1",
"5: Drop in Column 5",
"3: Drop in Column 3"
] | A | 1 | {"gym": "connect4", "turn": "R", "aug_mirror_h": true, "task_schema": "action_v2", "legal_columns": ["1", "2", "3", "4", "5", "6", "7"], "schema": "choice", "hard": false, "n_options": 3} |
sokoban.deadlock_alert | {"grid_map": "\njjjjjj\njVdhKj\njVVVVj\njjVVVj\njVVVVj\njVVVVj\njjjjjj\n", "legend": "'j': Wall, 'K': Player, 'h': Box, 'd': Target, '7': Box on target, 'r': Player on target, 'V': Empty floor"} | Is any box currently trapped in an irreversible corner deadlock? | [
"A",
"B"
] | [
"yes: Deadlock detected",
"no: State is safe"
] | B | no | {"gym": "sokoban", "schema": "noul", "task_schema": "action_v2", "symbol_remap": {"wall": "j", "player": "K", "box": "h", "target": "d", "box_on_target": "7", "player_on_target": "r", "floor": "V"}} |
sokoban.direction | {"grid_map": "\nqqqqqqq\nq==r==q\nq=====q\nq=D===q\nq=Hy==q\nqqqqqqq\n", "legend": "'q': Wall, 'D': Player, 'H': Box, 'y': Target, 'r': Box on target, '3': Player on target, '=': Empty floor"} | Inspect the 2D Sokoban map. Choose among the listed legal move directions. | [
"A",
"B",
"C"
] | [
"RIGHT: Move RIGHT",
"LEFT: Move LEFT",
"UP: Move UP"
] | B | LEFT | {"gym": "sokoban", "level_size": "6x7", "aug_rot_k": 0, "aug_flip_h": true, "symbol_remap": {"wall": "q", "player": "D", "box": "H", "target": "y", "box_on_target": "r", "player_on_target": "3", "floor": "="}, "task_schema": "action_v2", "legal_dirs": ["LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_optio... |
ticket.urgency | {"channel": "phone", "ticket": {"subject": "API returns 500 on /v1/invoices", "body": "Thread summary — The app crashes every time I open settings | wait_days=9 | tier=enterprise | priority=p2", "tier": "enterprise", "priority": "p2", "wait_days": 9}} | How urgent is this ticket? Pick one level letter from Criteria. | [
"A",
"B",
"C"
] | [
"1: medium — same day",
"2: high — immediate",
"0: low — can wait"
] | B | 2 | {"gym": "ticket_dungeon", "schema_hint": "score", "urgency": 2, "schema": "choice", "hard": false, "n_options": 3} |
connect4.threat_alert | {"grid_map": "\n 1 2 3 4 5 6 7\n+---------------+ +\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . . . . Y . . |\n| . . R . Y . . |\n| R Y Y R R . R |\n+===============+\n", "turn": "Yellow (Y)", "legend": "'R': Red disc, 'Y': Yellow disc, '.': Empty slot. Columns are 1 to 7."} | Does the opponent have an immediate 4-in-a-row winning threat next turn? | [
"A",
"B"
] | [
"yes: Opponent has a 4-in-a-row threat next turn",
"no: No immediate winning threat from opponent"
] | A | yes | {"gym": "connect4", "schema": "noul", "task_schema": "action_v2"} |
destination | {"board_2d_map": "\n a b c d e f g h\n8 r . b q k b n r 8\n7 p p p p p . . p 7\n6 . . n . . . p . 6\n5 . . . . . p . . 5\n4 . . . P P . . . 4\n3 . . . . . N . . 3\n2 P P P . . P P P 2\n1 R N B Q K B . R 1\n a b c d e f g h\n", "fen": "r1bqkbnr/ppppp2p/2n3p1/5p2/3PP3/5N2/PPP2PPP/RNBQKB1R w KQkq - 0 4", "side_to_move":... | The piece on e4 is selected. Use board_2d_map. A piece is already selected. Choose the best legal destination. Reply with the option letter. | [
"A",
"B"
] | [
"e4e5: to e5",
"e4f5: to f5"
] | B | e4f5 | {"label_source": "stockfish", "selected_piece": "e4", "n_options": 2, "gym": "chess", "task_schema": "staged_v1"} |
game2048.slide | {"grid_map": "\n+------+------+------+------+\n| 4 | . | . | 2 |\n+------+------+------+------+\n| 2 | . | . | . |\n+------+------+------+------+\n| 16 | 4 | . | . |\n+------+------+------+------+\n| 256 | 16 | . | . |\n+------+------+------+------+\n", "highest_tile": 256, "... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C",
"D"
] | [
"RIGHT: Slide RIGHT",
"UP: Slide UP",
"DOWN: Slide DOWN",
"LEFT: Slide LEFT"
] | B | UP | {"gym": "game2048", "max_tile": 256, "aug_rot_k": 3, "aug_flip_h": true, "empty_cells_count": 9, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 4} |
game2048.slide | {"grid_map": "\n+------+------+------+------+\n| 2 | 4 | 2 | . |\n+------+------+------+------+\n| 16 | . | . | . |\n+------+------+------+------+\n| 4 | . | . | 2 |\n+------+------+------+------+\n| 128 | . | . | . |\n+------+------+------+------+\n", "highest_tile": 128, "... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C",
"D"
] | [
"LEFT: Slide LEFT",
"UP: Slide UP",
"DOWN: Slide DOWN",
"RIGHT: Slide RIGHT"
] | B | UP | {"gym": "game2048", "max_tile": 128, "aug_rot_k": 0, "aug_flip_h": false, "empty_cells_count": 9, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 4} |
destination | {"board_2d_map": "\n a b c d e f g h\n8 r . b . k . . r 8\n7 . p . p . p . p 7\n6 . . n . . p . . 6\n5 p B . . . . . . 5\n4 . P . b P . . . 4\n3 . . . . . . . . 3\n2 P B . K Q . P P 2\n1 R N . . . . N R 1\n a b c d e f g h\n", "fen": "r1b1k2r/1p1p1p1p/2n2p2/pB6/1P1bP3/8/PB1KQ1PP/RN4NR w kq - 5 14", "side_to_move": "w... | The piece on d2 is selected. Use board_2d_map. A piece is already selected. Choose the best legal destination. Reply with the option letter. | [
"A",
"B",
"C",
"D",
"E"
] | [
"d2e1: to e1",
"d2c1: to c1",
"d2d1: to d1",
"d2c2: to c2",
"d2d3: to d3"
] | B | d2c1 | {"label_source": "stockfish", "selected_piece": "d2", "n_options": 5, "gym": "chess", "task_schema": "staged_v1"} |
game2048.slide | {"highest_tile": 64, "grid_map": "\n+------+------+------+------+\n| 64 | 2 | 8 | 4 |\n+------+------+------+------+\n| 8 | 16 | 64 | 16 |\n+------+------+------+------+\n| 2 | . | . | 4 |\n+------+------+------+------+\n| . | . | 2 | 4 |\n+------+------+------+------+\n", "l... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C",
"D"
] | [
"UP: Slide UP",
"DOWN: Slide DOWN",
"RIGHT: Slide RIGHT",
"LEFT: Slide LEFT"
] | A | UP | {"gym": "game2048", "max_tile": 64, "aug_rot_k": 2, "aug_flip_h": false, "empty_cells_count": 4, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 4} |
gridworld.hazard_alert | {"grid_map": "\n########\n \n#.X.#..#\n \n#XGX#.X#\n \n#.....X#\n \n#.@....#\n \n#..#.X.#\n \n##.....#\n \n########\n", "legend": "'#': Wall, '@': Player, 'G': Goal, 'X': Deadly Trap, '.': Floor"} | Is the player (@) currently adjacent to a deadly trap (X)? | [
"A",
"B"
] | [
"yes: Immediate deadly trap nearby",
"no: Surroundings safe"
] | B | no | {"gym": "gridworld", "schema": "noul", "task_schema": "action_v2", "symbol_remap": {"wall": "#", "player": "@", "goal": "G", "hazard": "X", "floor": "."}} |
gridworld.move | {"legend": "'#': Wall, '@': Player, 'G': Goal, 'X': Deadly Trap, '.': Floor", "grid_map": "\n#########\n \n#.......#\n \n#X......#\n \n#..G#...#\n \n#XXXX@..#\n \n#...#.X.#\n \n##.#....#\n \n#########\n"} | Inspect the 2D GridWorld map. Choose among the listed legal move directions. | [
"A",
"B",
"C"
] | [
"UP: Move UP",
"DOWN: Move DOWN",
"RIGHT: Move RIGHT"
] | A | UP | {"gym": "gridworld", "grid_size": "9x8", "aug_rot_k": 1, "aug_flip_h": true, "spawn": "random", "symbol_remap": {"wall": "#", "player": "@", "goal": "G", "hazard": "X", "floor": "."}, "task_schema": "action_v2", "legal_dirs": ["DOWN", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 3} |
word.one_edit | {"legend": "Exactly one letter differs from the base word.", "base_word": "knife"} | Which option differs from 'knife' by exactly one letter? | [
"A",
"B",
"C",
"D"
] | [
"tunnel: tunnel",
"oxygen: oxygen",
"candle: candle",
"knifg: knifg"
] | D | knifg | {"gym": "word_games", "kind": "one_edit", "base": "knife", "schema": "choice", "hard": false, "n_options": 4, "vocab_split": "train"} |
game2048.slide | {"highest_tile": 32, "legend": "Numbers represent tile values; '.' represents an empty cell.", "grid_map": "\n+------+------+------+------+\n| . | . | . | 8 |\n+------+------+------+------+\n| . | . | . | 8 |\n+------+------+------+------+\n| 2 | 8 | 4 | 2 |\n+------+------+------+--... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C"
] | [
"LEFT: Slide LEFT",
"DOWN: Slide DOWN",
"UP: Slide UP"
] | B | DOWN | {"gym": "game2048", "max_tile": 32, "aug_rot_k": 3, "aug_flip_h": false, "empty_cells_count": 6, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "UP"], "schema": "choice", "hard": false, "n_options": 3} |
sokoban.direction | {"legend": "'#': Wall, '@': Player, '$': Box, '.': Target, '*': Box on target, '+': Player on target, ' ': Empty floor", "grid_map": "\n######\n#. $@#\n### #\n# #\n######\n"} | Inspect the 2D Sokoban map. Choose among the listed legal move directions. | [
"A",
"B"
] | [
"LEFT: Move LEFT",
"DOWN: Move DOWN"
] | A | LEFT | {"gym": "sokoban", "level_size": "5x6", "aug_rot_k": 0, "aug_flip_h": false, "symbol_remap": {"wall": "#", "player": "@", "box": "$", "target": ".", "box_on_target": "*", "player_on_target": "+", "floor": " "}, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT"], "schema": "choice", "hard": false, "n_options": 2... |
nlp.cloze | {"legend": "Select the most contextually appropriate word to fill in the blank.", "sentence": "It took another [___] for it to be dedicated on December."} | Which word correctly completes the sentence? Reply with one option letter. | [
"A",
"B",
"C",
"D"
] | [
"museo: museo",
"busby: busby",
"years: years",
"hooks: hooks"
] | C | years | {"gym": "nlp_cloze", "kind": "cloze", "corpus": "wikitext-2-raw-v1", "corpus_split": "train", "doc_id": 56462, "answer_len": 5, "schema": "choice", "hard": false, "n_options": 4} |
piece | {"board_2d_map": "\n a b c d e f g h\n8 r . b . k b n r 8\n7 p p . p . . p p 7\n6 . . p . . . . . 6\n5 q . . . . p . . 5\n4 . . . p P . . . 4\n3 . . P . . . . . 3\n2 P P . . B P P P 2\n1 R N B Q K . R . 1\n a b c d e f g h\n", "fen": "r1b1kbnr/pp1p2pp/2p5/q4p2/3pP3/2P5/PP2BPPP/RNBQK1R1 b Qkq - 0 8", "side_to_move": "... | Use board_2d_map. Pick one piece that should move this turn. Prefer development, center control, and king safety. Reply with the option letter. | [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
] | [
"g7: black pawn on g7",
"a7: black pawn on a7",
"g8: black knight on g8",
"a8: black rook on a8",
"d4: black pawn on d4",
"c6: black pawn on c6",
"d7: black pawn on d7",
"a5: black queen on a5"
] | E | d4 | {"label_source": "stockfish", "best_uci": "d4c3", "n_options": 8, "gym": "chess", "task_schema": "staged_v1"} |
connect4.drop | {"turn": "Red (R)", "legend": "'R': Red disc, 'Y': Yellow disc, '.': Empty slot. Columns are 1 to 7.", "grid_map": "\n 1 2 3 4 5 6 7\n+---------------+ +\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . R |\n| Y R Y . . . Y |\n| Y Y R . R . R |\n+===============+\n"} | Inspect the 7x6 Connect Four board. Choose among the listed legal columns to drop your disc. | [
"A",
"B",
"C"
] | [
"5: Drop in Column 5",
"1: Drop in Column 1",
"2: Drop in Column 2"
] | B | 1 | {"gym": "connect4", "turn": "R", "aug_mirror_h": false, "task_schema": "action_v2", "legal_columns": ["1", "2", "3", "4", "5", "6", "7"], "schema": "choice", "hard": false, "n_options": 3} |
alloc.pressure | {"requests": [{"id": "hiring_bonus", "title": "Hiring referral bonuses", "cost": 50, "urgency": 1}, {"id": "oncall_stipend", "title": "On-call stipend top-up", "cost": 43, "urgency": 2}, {"id": "cdn_upgrade", "title": "CDN capacity upgrade", "cost": 62, "urgency": 2}, {"id": "marketing_campaign", "title": "Q3 marketing... | How constrained is the budget relative to demand? Pick one letter. | [
"A",
"B"
] | [
"0: low — budget comfortably covers demand",
"1: medium — close to capacity"
] | B | 1 | {"gym": "resource_allocator", "schema_hint": "score", "ratio": 1.1152263374485596, "schema": "choice", "hard": false, "n_options": 2} |
connect4.threat_alert | {"grid_map": "\n 1 2 3 4 5 6 7\n+---------------+ +\n| . . . . . . . |\n| . . . . . . . |\n| . . . . Y . . |\n| Y . . . R . . |\n| Y R R Y R . R |\n| Y R R Y Y Y R |\n+===============+\n", "turn": "Red (R)", "legend": "'R': Red disc, 'Y': Yellow disc, '.': Empty slot. Columns are 1 to 7."} | Does the opponent have an immediate 4-in-a-row winning threat next turn? | [
"A",
"B"
] | [
"yes: Opponent has a 4-in-a-row threat next turn",
"no: No immediate winning threat from opponent"
] | A | yes | {"gym": "connect4", "schema": "noul", "task_schema": "action_v2"} |
sokoban.deadlock_alert | {"grid_map": "\n#####\n# $ #\n# @ #\n# #\n# # #\n#$ .#\n#####\n", "legend": "'#': Wall, '@': Player, '$': Box, '.': Target, '*': Box on target, '+': Player on target, ' ': Empty floor"} | Is any box currently trapped in an irreversible corner deadlock? | [
"A",
"B"
] | [
"yes: Deadlock detected",
"no: State is safe"
] | A | yes | {"gym": "sokoban", "schema": "noul", "task_schema": "action_v2", "aug_rot_k": 1, "aug_flip_h": false, "deadlock_synth": true, "symbol_remap": {"wall": "#", "player": "@", "box": "$", "target": ".", "box_on_target": "*", "player_on_target": "+", "floor": " "}} |
debate.winner | {"side_b": {"label": "oppose", "claims": [{"text": "I just don't like Fridays", "hard_evidence": false}]}, "question": "We should deploy on Friday", "side_a": {"label": "support", "claims": [{"text": "Customers asked for the fix this week", "hard_evidence": true}, {"text": "Fridays feel lucky", "hard_evidence": false},... | Which side is better supported by evidence? Reply with one option letter. | [
"A",
"B"
] | [
"oppose: Side B — oppose the proposal",
"support: Side A — support the proposal"
] | B | support | {"gym": "debate_judge", "topic_id": "deploy_friday", "topic_split": "train", "pro_ev": 2, "con_ev": 0, "schema": "choice", "hard": false, "n_options": 2} |
ca.pop_change | {"grid_map": "\n...O.O\n.O..OO\n.O..OO\n..O...\nO.O..O\n....O.\nO....O\n.OO.O.\n.....O\n", "rule": "B3/S23", "legend": "Cellular automaton rule B3/S23 (B3/S23): a dead cell becomes live with exactly {3} neighbors; a live cell stays live with {2, 3} neighbors; otherwise dies/stays dead. 'O'=live, '.'=dead. Torus=no (edg... | Apply the legend rule for exactly 1 step(s). Compared to the initial live count, does the population go up, down, or stay the same? | [
"A",
"B",
"C"
] | [
"up: More live cells",
"down: Fewer live cells",
"same: Same live count"
] | A | up | {"gym": "cellular_automata", "rule": "B3/S23", "n_steps": 1, "grid_size": "9x6", "live_before": 19, "live_after": 24, "schema": "choice", "hard": false, "n_options": 3} |
destination | {"board_2d_map": "\n a b c d e f g h\n8 r . b q . r k . 8\n7 p p . . . p p . 7\n6 . n . . . n . p 6\n5 . . . p . . . . 5\n4 . b p P . B . . 4\n3 . . N . P N . . 3\n2 P P B . . P P P 2\n1 R Q . . . R K . 1\n a b c d e f g h\n", "fen": "r1bq1rk1/pp3pp1/1n3n1p/3p4/1bpP1B2/2N1PN2/PPB2PPP/RQ3RK1 w - - 0 12", "side_to_move... | The piece on h2 is selected. Use board_2d_map. A piece is already selected. Choose the best legal destination. Reply with the option letter. | [
"A",
"B"
] | [
"h2h4: to h4",
"h2h3: to h3"
] | B | h2h3 | {"label_source": "stockfish", "selected_piece": "h2", "n_options": 2, "gym": "chess", "task_schema": "staged_v1"} |
gridworld.hazard_alert | {"grid_map": "\n#########\n \n#.#.....#\n \n#......X#\n \n#X@..#..#\n \n#XG.....#\n \n#......##\n \n#.......#\n \n#....X..#\n \n#########\n", "legend": "'#': Wall, '@': Player, 'G': Goal, 'X': Deadly Trap, '.': Floor"} | Is the player (@) currently adjacent to a deadly trap (X)? | [
"A",
"B"
] | [
"yes: Immediate deadly trap nearby",
"no: Surroundings safe"
] | A | yes | {"gym": "gridworld", "schema": "noul", "task_schema": "action_v2", "symbol_remap": {"wall": "#", "player": "@", "goal": "G", "hazard": "X", "floor": "."}} |
connect4.win_now_alert | {"grid_map": "\n 1 2 3 4 5 6 7\n+---------------+ +\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . . R . . . . |\n| . . Y . . . . |\n| . R R . . Y . |\n+===============+\n", "turn": "Yellow (Y)", "legend": "'R': Red disc, 'Y': Yellow disc, '.': Empty slot. Columns are 1 to 7."} | Can the side to move win immediately with one drop this turn? | [
"A",
"B"
] | [
"yes: Current side can win immediately this turn",
"no: No immediate winning drop this turn"
] | B | no | {"gym": "connect4", "schema": "noul", "task_schema": "action_v2"} |
ca.cell_alive | {"rule": "B3/S23", "query_cell": {"row": 3, "col": 0, "index_origin": "0-based top-left"}, "n_steps": 3, "grid_map": "\n..O..O\n.O....\n.....O\n...O..\n.O.O..\n.O.O.O\n", "legend": "Cellular automaton rule B3/S23 (B3/S23): a dead cell becomes live with exactly {3} neighbors; a live cell stays live with {2, 3} neighbors... | Apply the legend rule for exactly 3 step(s). Will the cell at row=3, col=0 (0-based) be live? | [
"A",
"B"
] | [
"no: Cell will be dead (.)",
"yes: Cell will be live (O)"
] | A | no | {"gym": "cellular_automata", "rule": "B3/S23", "n_steps": 3, "grid_size": "6x6", "query_cell": [3, 0], "schema": "choice", "hard": false, "n_options": 2} |
destination | {"board_2d_map": "\n a b c d e f g h\n8 r . b q r . k . 8\n7 p p p p . p p p 7\n6 . . . . . n . . 6\n5 . . . . n . . . 5\n4 . . . N . . . . 4\n3 N . P . . P . . 3\n2 P P . . B . P P 2\n1 R . B Q . R K . 1\n a b c d e f g h\n", "fen": "r1bqr1k1/pppp1ppp/5n2/4n3/3N4/N1P2P2/PP2B1PP/R1BQ1RK1 w - - 1 12", "side_to_move": ... | The piece on f1 is selected. Use board_2d_map. A piece is already selected. Choose the best legal destination. Reply with the option letter. | [
"A",
"B"
] | [
"f1e1: to e1",
"f1f2: to f2"
] | A | f1e1 | {"label_source": "stockfish", "selected_piece": "f1", "n_options": 2, "gym": "chess", "task_schema": "staged_v1"} |
ca.pop_parity | {"n_steps": 1, "rule": "B3/S23", "legend": "Cellular automaton rule B3/S23 (B3/S23): a dead cell becomes live with exactly {3} neighbors; a live cell stays live with {2, 3} neighbors; otherwise dies/stays dead. 'O'=live, '.'=dead. Torus=no (edges have fewer neighbors).", "grid_map": "\n.O....\n..OOO.\nO.OO..\n.....O\n.... | Apply the legend rule for exactly 1 step(s). Will the number of live cells be even or odd? | [
"A",
"B"
] | [
"odd: Odd live count",
"even: Even live count"
] | A | odd | {"gym": "cellular_automata", "rule": "B3/S23", "n_steps": 1, "grid_size": "10x6", "live_after": 21, "schema": "choice", "hard": false, "n_options": 2} |
sokoban.direction | {"grid_map": "\nPPPPPP\nPMMMMP\nP4MMMP\nPMnPMP\nPMpMMP\nPMMMMP\nPPPPPP\n", "legend": "'P': Wall, 'p': Player, 'n': Box, '4': Target, 'A': Box on target, 'F': Player on target, 'M': Empty floor"} | Inspect the 2D Sokoban map. Choose among the listed legal move directions. | [
"A",
"B",
"C",
"D"
] | [
"RIGHT: Move RIGHT",
"DOWN: Move DOWN",
"UP: Move UP",
"LEFT: Move LEFT"
] | C | UP | {"gym": "sokoban", "level_size": "6x7", "aug_rot_k": 1, "aug_flip_h": true, "symbol_remap": {"wall": "P", "player": "p", "box": "n", "target": "4", "box_on_target": "A", "player_on_target": "F", "floor": "M"}, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, ... |
game2048.slide | {"legend": "Numbers represent tile values; '.' represents an empty cell.", "grid_map": "\n+------+------+------+------+\n| . | 8 | 16 | 128 |\n+------+------+------+------+\n| . | 2 | 2 | 8 |\n+------+------+------+------+\n| . | . | . | 8 |\n+------+------+------+------+\n| . | .... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C"
] | [
"UP: Slide UP",
"DOWN: Slide DOWN",
"LEFT: Slide LEFT"
] | A | UP | {"gym": "game2048", "max_tile": 128, "aug_rot_k": 2, "aug_flip_h": false, "empty_cells_count": 8, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 3} |
gridworld.hazard_alert | {"grid_map": "\n#########\n \n#.X#..@.#\n \n#.#.....#\n \n#GX.....#\n \n#.......#\n \n#.XX#...#\n \n#########\n", "legend": "'#': Wall, '@': Player, 'G': Goal, 'X': Deadly Trap, '.': Floor"} | Is the player (@) currently adjacent to a deadly trap (X)? | [
"A",
"B"
] | [
"yes: Immediate deadly trap nearby",
"no: Surroundings safe"
] | B | no | {"gym": "gridworld", "schema": "noul", "task_schema": "action_v2", "symbol_remap": {"wall": "#", "player": "@", "goal": "G", "hazard": "X", "floor": "."}} |
debate.confidence | {"side_b": {"label": "oppose", "claims": [{"text": "New-grad ramp surveys show slower onboarding", "hard_evidence": true}]}, "rubric": "Prefer hard evidence over vibes; break ties toward the side with more hard evidence.", "side_a": {"label": "support", "claims": [{"text": "Attrition dropped 20% after remote policy", "... | How confident should we be in the judgment? Reply with one level letter. | [
"A",
"B",
"C"
] | [
"2: high confidence",
"1: medium confidence",
"0: low confidence"
] | C | 0 | {"gym": "debate_judge", "topic_id": "remote_first", "topic_split": "train", "pro_ev": 1, "con_ev": 1, "schema_hint": "score", "schema": "choice", "hard": false, "n_options": 3} |
game2048.slide | {"highest_tile": 256, "grid_map": "\n+------+------+------+------+\n| . | 4 | 16 | 256 |\n+------+------+------+------+\n| 2 | 2 | 4 | 16 |\n+------+------+------+------+\n| . | . | . | . |\n+------+------+------+------+\n| . | . | . | . |\n+------+------+------+------+\n", "... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C",
"D"
] | [
"LEFT: Slide LEFT",
"UP: Slide UP",
"DOWN: Slide DOWN",
"RIGHT: Slide RIGHT"
] | D | RIGHT | {"gym": "game2048", "max_tile": 256, "aug_rot_k": 1, "aug_flip_h": false, "empty_cells_count": 9, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 4} |
gridworld.move | {"grid_map": "\n# # # # # # #\n# . . G # X #\n# . X # . . #\n# . @ . . . #\n# . . . # # #\n# . X . # . #\n# . . . . X #\n# . . . # . #\n# # # # # # #\n", "legend": "'#': Wall, '@': Player, 'G': Goal, 'X': Deadly Trap, '.': Floor"} | Inspect the 2D GridWorld map. Choose among the listed legal move directions. | [
"A",
"B",
"C"
] | [
"LEFT: Move LEFT",
"DOWN: Move DOWN",
"RIGHT: Move RIGHT"
] | A | LEFT | {"gym": "gridworld", "grid_size": "9x7", "aug_rot_k": 0, "aug_flip_h": false, "spawn": "random", "symbol_remap": {"wall": "#", "player": "@", "goal": "G", "hazard": "X", "floor": "."}, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT"], "schema": "choice", "hard": false, "n_options": 3} |
ca.pop_change | {"grid_map": "\nO..O..OO\n.O.O.OO.\n..OOOO..\n..O.O.O.\n.O...OO.\n.....O..\nO.O..O.O\nO.OO.OO.\n", "n_steps": 1, "legend": "Cellular automaton rule B36/S23 (B36/S23): a dead cell becomes live with exactly {3, 6} neighbors; a live cell stays live with {2, 3} neighbors; otherwise dies/stays dead. 'O'=live, '.'=dead. Toru... | Apply the legend rule for exactly 1 step(s). Compared to the initial live count, does the population go up, down, or stay the same? | [
"A",
"B",
"C"
] | [
"down: Fewer live cells",
"up: More live cells",
"same: Same live count"
] | A | down | {"gym": "cellular_automata", "rule": "B36/S23", "n_steps": 1, "grid_size": "8x8", "live_before": 28, "live_after": 26, "schema": "choice", "hard": false, "n_options": 3} |
word.one_edit | {"base_word": "walnut", "legend": "Exactly one letter differs from the base word."} | Which option differs from 'walnut' by exactly one letter? | [
"A",
"B",
"C",
"D"
] | [
"walnui: walnui",
"barrel: barrel",
"kernel: kernel",
"tiger: tiger"
] | A | walnui | {"gym": "word_games", "kind": "one_edit", "base": "walnut", "schema": "choice", "hard": false, "n_options": 4, "vocab_split": "train"} |
sokoban.deadlock_alert | {"grid_map": "\n#######\n#.$ #\n# @ #\n#* #\n#$ #\n#######\n", "legend": "'#': Wall, '@': Player, '$': Box, '.': Target, '*': Box on target, '+': Player on target, ' ': Empty floor"} | Is any box currently trapped in an irreversible corner deadlock? | [
"A",
"B"
] | [
"yes: Deadlock detected",
"no: State is safe"
] | A | yes | {"gym": "sokoban", "schema": "noul", "task_schema": "action_v2", "aug_rot_k": 1, "aug_flip_h": true, "deadlock_synth": true, "symbol_remap": {"wall": "#", "player": "@", "box": "$", "target": ".", "box_on_target": "*", "player_on_target": "+", "floor": " "}} |
game2048.slide | {"grid_map": "\n+------+------+------+------+\n| . | 4 | 8 | 16 |\n+------+------+------+------+\n| . | 2 | 64 | 16 |\n+------+------+------+------+\n| 2 | . | . | 64 |\n+------+------+------+------+\n| . | . | 2 | 128 |\n+------+------+------+------+\n", "highest_tile": 128, "... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C",
"D"
] | [
"RIGHT: Slide RIGHT",
"DOWN: Slide DOWN",
"LEFT: Slide LEFT",
"UP: Slide UP"
] | B | DOWN | {"gym": "game2048", "max_tile": 128, "aug_rot_k": 3, "aug_flip_h": false, "empty_cells_count": 6, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 4} |
sokoban.deadlock_alert | {"grid_map": "\n########\n# . #\n# @ #\n# $ #\n#$. $#\n########\n", "legend": "'#': Wall, '@': Player, '$': Box, '.': Target, '*': Box on target, '+': Player on target, ' ': Empty floor"} | Is any box currently trapped in an irreversible corner deadlock? | [
"A",
"B"
] | [
"yes: Deadlock detected",
"no: State is safe"
] | A | yes | {"gym": "sokoban", "schema": "noul", "task_schema": "action_v2", "aug_rot_k": 2, "aug_flip_h": true, "deadlock_synth": true, "symbol_remap": {"wall": "#", "player": "@", "box": "$", "target": ".", "box_on_target": "*", "player_on_target": "+", "floor": " "}} |
nlp.cloze | {"sentence": "Since the law s introduction the proportion of lbw dismissals has [___] steadily through the years.", "legend": "Select the most contextually appropriate word to fill in the blank."} | Which word correctly completes the sentence? Reply with one option letter. | [
"A",
"B",
"C",
"D"
] | [
"nukem: nukem",
"papas: papas",
"risen: risen",
"camps: camps"
] | C | risen | {"gym": "nlp_cloze", "kind": "cloze", "corpus": "wikitext-2-raw-v1", "corpus_split": "train", "doc_id": 19330, "answer_len": 5, "schema": "choice", "hard": false, "n_options": 4} |
alloc.fund_next | {"requests": [{"id": "office_snacks", "title": "Office snacks", "cost": 8, "urgency": 0}, {"id": "customer_refund_pool", "title": "Customer refund reserve", "cost": 50, "urgency": 2}, {"id": "design_sprint", "title": "Design sprint facilitator", "cost": 27, "urgency": 0}], "policy": "Fund at most one request per step; ... | Select the next funding target under the policy. One option letter. | [
"A",
"B",
"C"
] | [
"customer_refund_pool: Customer refund reserve (cost=50, urgency=2)",
"design_sprint: Design sprint facilitator (cost=27, urgency=0)",
"office_snacks: Office snacks (cost=8, urgency=0)"
] | A | customer_refund_pool | {"gym": "resource_allocator", "schema": "choice", "hard": false, "n_options": 3} |
word.definition | {"legend": "Choose the word that matches the definition.", "definition": "A stick of wax with a wick"} | Which option matches the given definition? | [
"A",
"B",
"C",
"D"
] | [
"tunnel: tunnel",
"bridge: bridge",
"candle: candle",
"window: window"
] | C | candle | {"gym": "word_games", "kind": "definition", "schema": "choice", "hard": false, "n_options": 4, "vocab_split": "train"} |
connect4.threat_alert | {"grid_map": "\n 1 2 3 4 5 6 7\n+---------------+ +\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . . . R . . . |\n| R Y . Y Y . . |\n| Y Y R R Y R R |\n+===============+\n", "turn": "Red (R)", "legend": "'R': Red disc, 'Y': Yellow disc, '.': Empty slot. Columns are 1 to 7."} | Does the opponent have an immediate 4-in-a-row winning threat next turn? | [
"A",
"B"
] | [
"yes: Opponent has a 4-in-a-row threat next turn",
"no: No immediate winning threat from opponent"
] | A | yes | {"gym": "connect4", "schema": "noul", "task_schema": "action_v2"} |
gridworld.move | {"grid_map": "\nU U U U U U U\nU K K d d d U\nU K d d W d U\nU U d U d U U\nU K K U d d U\nU d d d d U U\nU d 6 d d d U\nU U U U U U U\n", "legend": "'U': Wall, 'W': Player, '6': Goal, 'K': Deadly Trap, 'd': Floor"} | Inspect the 2D GridWorld map. Choose among the listed legal move directions. | [
"A",
"B",
"C",
"D"
] | [
"DOWN: Move DOWN",
"LEFT: Move LEFT",
"RIGHT: Move RIGHT",
"UP: Move UP"
] | A | DOWN | {"gym": "gridworld", "grid_size": "8x7", "aug_rot_k": 2, "aug_flip_h": true, "spawn": "random", "symbol_remap": {"wall": "U", "player": "W", "goal": "6", "hazard": "K", "floor": "d"}, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 4} |
ca.cell_alive | {"grid_map": "\n.O....OOOO\nO..O..O.O.\n..O...OO..\n.....O....\nO......O..\nOOOOO.OO..\n......OOOO\n....OOO...\nO.O.O...O.\n", "rule": "B36/S23", "legend": "Cellular automaton rule B36/S23 (B36/S23): a dead cell becomes live with exactly {3, 6} neighbors; a live cell stays live with {2, 3} neighbors; otherwise dies/sta... | Apply the legend rule for exactly 5 step(s). Will the cell at row=2, col=7 (0-based) be live? | [
"A",
"B"
] | [
"no: Cell will be dead (.)",
"yes: Cell will be live (O)"
] | B | yes | {"gym": "cellular_automata", "rule": "B36/S23", "n_steps": 5, "grid_size": "9x10", "query_cell": [2, 7], "schema": "choice", "hard": false, "n_options": 2} |
ticket.route | {"channel": "phone", "ticket": {"subject": "Package stuck in transit for 0 days", "body": "Thread summary — Tracking has not moved for a week | wait_days=0 | tier=free | priority=p0", "tier": "free", "priority": "p0", "wait_days": 0}} | Select the correct routing destination for the ticket state. | [
"A",
"B",
"C",
"D",
"E"
] | [
"billing: payment, charges, invoices, refunds",
"sales: pricing, upgrades, new accounts",
"other: unclear or general questions",
"technical: bugs, crashes, outages, integrations",
"shipping: delivery, packages, tracking"
] | E | shipping | {"gym": "ticket_dungeon", "domain_seed": "shipping", "schema": "choice", "hard": false, "n_options": 5} |
connect4.drop | {"legend": "'R': Red disc, 'Y': Yellow disc, '.': Empty slot. Columns are 1 to 7.", "turn": "Red (R)", "grid_map": "\n 1 2 3 4 5 6 7\n+---------------+ +\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n+===============+\n"} | Inspect the 7x6 Connect Four board. Choose among the listed legal columns to drop your disc. | [
"A",
"B",
"C"
] | [
"4: Drop in Column 4",
"1: Drop in Column 1",
"2: Drop in Column 2"
] | C | 2 | {"gym": "connect4", "turn": "R", "aug_mirror_h": false, "task_schema": "action_v2", "legal_columns": ["1", "2", "3", "4", "5", "6", "7"], "schema": "choice", "hard": false, "n_options": 3} |
destination | {"board_2d_map": "\n a b c d e f g h\n8 r . b q . N k . 8\n7 p p p . . p . p 7\n6 . . . . . . . . 6\n5 . . P p . n . . 5\n4 . . . . . . . . 4\n3 . B P . . . . . 3\n2 P . P . . P P P 2\n1 R . B Q K . . R 1\n a b c d e f g h\n", "fen": "r1bq1Nk1/ppp2p1p/8/2Pp1n2/8/1BP5/P1P2PPP/R1BQK2R b KQ - 0 12", "side_to_move": "bla... | The piece on d8 is selected. Use board_2d_map. A piece is already selected. Choose the best legal destination. Reply with the option letter. | [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
] | [
"d8d6: to d6",
"d8e7: to e7",
"d8d7: to d7",
"d8g5: to g5",
"d8h4: to h4",
"d8f6: to f6",
"d8f8: to f8",
"d8e8: to e8"
] | B | d8e7 | {"label_source": "stockfish", "selected_piece": "d8", "n_options": 8, "gym": "chess", "task_schema": "staged_v1"} |
sokoban.direction | {"grid_map": "\nyyyyyyy\ny====vy\ny===bBy\ny===y=y\nyyyyyyy\n", "legend": "'y': Wall, 'B': Player, 'b': Box, 'v': Target, 'C': Box on target, '4': Player on target, '=': Empty floor"} | Inspect the 2D Sokoban map. Choose among the listed legal move directions. | [
"A",
"B",
"C"
] | [
"DOWN: Move DOWN",
"UP: Move UP",
"LEFT: Move LEFT"
] | C | LEFT | {"gym": "sokoban", "level_size": "5x7", "aug_rot_k": 2, "aug_flip_h": false, "symbol_remap": {"wall": "y", "player": "B", "box": "b", "target": "v", "box_on_target": "C", "player_on_target": "4", "floor": "="}, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "UP"], "schema": "choice", "hard": false, "n_optio... |
nlp.cloze | {"legend": "Select the most contextually appropriate word to fill in the blank.", "sentence": "Because of this human misbehavior the creator is [___] from his creation allowing suffering to exist."} | Which word correctly completes the sentence? Reply with one option letter. | [
"A",
"B",
"C",
"D"
] | [
"berardi: berardi",
"realist: realist",
"distant: distant",
"humbled: humbled"
] | C | distant | {"gym": "nlp_cloze", "kind": "cloze", "corpus": "wikitext-2-raw-v1", "corpus_split": "train", "doc_id": 1304, "answer_len": 7, "schema": "choice", "hard": false, "n_options": 4} |
connect4.drop | {"legend": "'R': Red disc, 'Y': Yellow disc, '.': Empty slot. Columns are 1 to 7.", "grid_map": "\n 1 2 3 4 5 6 7\n+---------------+ +\n| . . . . . . . |\n| . . . . . . . |\n| . . . . R . . |\n| . . . . Y . . |\n| . . . . R Y . |\n| Y . R R Y Y R |\n+===============+\n", "turn": "Red (R)"} | Inspect the 7x6 Connect Four board. Choose among the listed legal columns to drop your disc. | [
"A",
"B",
"C"
] | [
"3: Drop in Column 3",
"2: Drop in Column 2",
"7: Drop in Column 7"
] | B | 2 | {"gym": "connect4", "turn": "R", "aug_mirror_h": false, "task_schema": "action_v2", "legal_columns": ["1", "2", "3", "4", "5", "6", "7"], "schema": "choice", "hard": false, "n_options": 3} |
game2048.slide | {"grid_map": "\n+------+------+------+------+\n| 2 | . | 2 | . |\n+------+------+------+------+\n| 4 | 8 | . | . |\n+------+------+------+------+\n| 32 | . | . | . |\n+------+------+------+------+\n| 128 | 2 | 4 | 2 |\n+------+------+------+------+\n", "highest_tile": 128, "... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C",
"D"
] | [
"UP: Slide UP",
"DOWN: Slide DOWN",
"RIGHT: Slide RIGHT",
"LEFT: Slide LEFT"
] | D | LEFT | {"gym": "game2048", "max_tile": 128, "aug_rot_k": 2, "aug_flip_h": true, "empty_cells_count": 7, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 4} |
debate.winner | {"side_b": {"label": "oppose", "claims": [{"text": "Some customers require on-site workshops", "hard_evidence": true}, {"text": "Offices look empty and sad", "hard_evidence": false}]}, "side_a": {"label": "support", "claims": [{"text": "My friend likes remote", "hard_evidence": false}]}, "question": "Remote-first impro... | Which side is better supported by evidence? Reply with one option letter. | [
"A",
"B"
] | [
"oppose: Side B — oppose the proposal",
"support: Side A — support the proposal"
] | A | oppose | {"gym": "debate_judge", "topic_id": "remote_first", "topic_split": "train", "pro_ev": 0, "con_ev": 1, "schema": "choice", "hard": false, "n_options": 2} |
word.plural | {"singular": "woman", "rule": "Form the regular/irregular English plural as listed in standard usage.", "legend": "Apply English pluralization; pick the correct plural form."} | What is the plural of 'woman'? | [
"A",
"B",
"C"
] | [
"womanies: womanies",
"womanes: womanes",
"women: women"
] | C | women | {"gym": "word_games", "kind": "plural", "schema": "choice", "hard": false, "n_options": 3, "vocab_split": "train"} |
sokoban.deadlock_alert | {"grid_map": "\n#######\n# ##\n# $ #.#\n#. $ #\n# @ #\n#######\n", "legend": "'#': Wall, '@': Player, '$': Box, '.': Target, '*': Box on target, '+': Player on target, ' ': Empty floor"} | Is any box currently trapped in an irreversible corner deadlock? | [
"A",
"B"
] | [
"yes: Deadlock detected",
"no: State is safe"
] | B | no | {"gym": "sokoban", "schema": "noul", "task_schema": "action_v2", "symbol_remap": {"wall": "#", "player": "@", "box": "$", "target": ".", "box_on_target": "*", "player_on_target": "+", "floor": " "}} |
game2048.slide | {"highest_tile": 32, "grid_map": "\n+------+------+------+------+\n| . | . | . | 32 |\n+------+------+------+------+\n| . | 2 | 4 | 16 |\n+------+------+------+------+\n| . | . | 8 | 2 |\n+------+------+------+------+\n| . | 4 | 4 | 8 |\n+------+------+------+------+\n", "l... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C",
"D"
] | [
"DOWN: Slide DOWN",
"LEFT: Slide LEFT",
"UP: Slide UP",
"RIGHT: Slide RIGHT"
] | D | RIGHT | {"gym": "game2048", "max_tile": 32, "aug_rot_k": 3, "aug_flip_h": true, "empty_cells_count": 7, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 4} |
ticket.needs_human | {"ticket": {"subject": "Where is the documentation?", "body": "Message: Thanks for the help last week. Priority flag: p2. Account tier: enterprise.", "tier": "enterprise", "priority": "p2", "wait_days": 9}, "channel": "email"} | Human escalation required? Pick yes or no via the option letter. | [
"A",
"B"
] | [
"no: Safe for bot / routine",
"yes: Needs a human (money, legal, anger, long wait, outage)"
] | B | yes | {"gym": "ticket_dungeon", "schema_hint": "noul", "schema": "choice", "hard": false, "n_options": 2} |
piece | {"board_2d_map": "\n a b c d e f g h\n8 r . b q . r k . 8\n7 p . . p . . b . 7\n6 . p n . . . p . 6\n5 . . p . p n . p 5\n4 . . P . . . . P 4\n3 P . N P . N P . 3\n2 . P Q . . P B . 2\n1 R . B . K . . R 1\n a b c d e f g h\n", "fen": "r1bq1rk1/p2p2b1/1pn3p1/2p1pn1p/2P4P/P1NP1NP1/1PQ2PB1/R1B1K2R b KQ - 0 13", "side_to... | Use board_2d_map. Pick one piece that should move this turn. Prefer development, center control, and king safety. Reply with the option letter. | [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
] | [
"c6: black knight on c6",
"d7: black pawn on d7",
"a7: black pawn on a7",
"g6: black pawn on g6",
"g8: black king on g8",
"c8: black bishop on c8",
"a8: black rook on a8",
"e5: black pawn on e5"
] | F | c8 | {"label_source": "stockfish", "best_uci": "c8b7", "n_options": 8, "gym": "chess", "task_schema": "staged_v1"} |
sokoban.direction | {"grid_map": "\n########\n# . $ #\n# @ #\n# . $ #\n########\n", "legend": "'#': Wall, '@': Player, '$': Box, '.': Target, '*': Box on target, '+': Player on target, ' ': Empty floor"} | Inspect the 2D Sokoban map. Choose among the listed legal move directions. | [
"A",
"B"
] | [
"LEFT: Move LEFT",
"RIGHT: Move RIGHT"
] | B | RIGHT | {"gym": "sokoban", "level_size": "5x8", "aug_rot_k": 0, "aug_flip_h": false, "symbol_remap": {"wall": "#", "player": "@", "box": "$", "target": ".", "box_on_target": "*", "player_on_target": "+", "floor": " "}, "task_schema": "action_v2", "legal_dirs": ["LEFT", "RIGHT"], "schema": "choice", "hard": false, "n_options": ... |
piece | {"board_2d_map": "\n a b c d e f g h\n8 r n b . k b n r 8\n7 p p p p . p p p 7\n6 . . . . . . . . 6\n5 . B . . N . . . 5\n4 . . . P P . . . 4\n3 . . . . . . . . 3\n2 P P P . . P q P 2\n1 R N B Q K . . R 1\n a b c d e f g h\n", "fen": "rnb1kbnr/pppp1ppp/8/1B2N3/3PP3/8/PPP2PqP/RNBQK2R w KQkq - 0 6", "side_to_move": "wh... | Use board_2d_map. Pick one piece that should move this turn. Prefer development, center control, and king safety. Reply with the option letter. | [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
] | [
"b2: white pawn on b2",
"h2: white pawn on h2",
"c2: white pawn on c2",
"b5: white bishop on b5",
"d1: white queen on d1",
"f2: white pawn on f2",
"e1: white king on e1",
"a2: white pawn on a2"
] | E | d1 | {"label_source": "stockfish", "best_uci": "d1f3", "n_options": 8, "gym": "chess", "task_schema": "staged_v1"} |
word.anagram | {"scrambled": "falme", "legend": "Unscramble into a valid English word from the options."} | Unscramble letters 'falme' into the correct word. | [
"A",
"B",
"C",
"D"
] | [
"yearn: yearn",
"insect: insect",
"flame: flame",
"river: river"
] | C | flame | {"gym": "word_games", "kind": "anagram", "schema": "choice", "hard": false, "n_options": 4, "vocab_split": "train"} |
nlp.cloze | {"sentence": "Walsh had already created a fairly Utopian world and we wanted to exaggerate and enhance it a little bit more mostly [___] the use of color.", "legend": "Select the most contextually appropriate word to fill in the blank."} | Which word correctly completes the sentence? Reply with one option letter. | [
"A",
"B",
"C",
"D"
] | [
"royalty: royalty",
"gundeck: gundeck",
"through: through",
"coupled: coupled"
] | C | through | {"gym": "nlp_cloze", "kind": "cloze", "corpus": "wikitext-2-raw-v1", "corpus_split": "train", "doc_id": 18143, "answer_len": 7, "schema": "choice", "hard": false, "n_options": 4} |
piece | {"board_2d_map": "\n a b c d e f g h\n8 r q . . k b n r 8\n7 . p . . . . p p 7\n6 . . n . p p . . 6\n5 p . p P . . . . 5\n4 . . B . . P . . 4\n3 . . N . . . . P 3\n2 P P P P . . . P 2\n1 R . B . K . . R 1\n a b c d e f g h\n", "fen": "rq2kbnr/1p4pp/2n1pp2/p1pP4/2B2P2/2N4P/PPPP3P/R1B1K2R w KQkq - 0 10", "side_to_move"... | Use board_2d_map. Pick one piece that should move this turn. Prefer development, center control, and king safety. Reply with the option letter. | [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
] | [
"h1: white rook on h1",
"h3: white pawn on h3",
"e1: white king on e1",
"d2: white pawn on d2",
"b2: white pawn on b2",
"a1: white rook on a1",
"f4: white pawn on f4",
"d5: white pawn on d5"
] | H | d5 | {"label_source": "stockfish", "best_uci": "d5c6", "n_options": 8, "gym": "chess", "task_schema": "staged_v1"} |
game2048.slide | {"legend": "Numbers represent tile values; '.' represents an empty cell.", "highest_tile": 128, "grid_map": "\n+------+------+------+------+\n| . | 4 | 8 | 4 |\n+------+------+------+------+\n| . | . | 2 | 8 |\n+------+------+------+------+\n| 2 | . | . | 64 |\n+------+------+------+-... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C",
"D"
] | [
"RIGHT: Slide RIGHT",
"DOWN: Slide DOWN",
"LEFT: Slide LEFT",
"UP: Slide UP"
] | D | UP | {"gym": "game2048", "max_tile": 128, "aug_rot_k": 3, "aug_flip_h": true, "empty_cells_count": 8, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 4} |
sokoban.direction | {"legend": "'#': Wall, '@': Player, '$': Box, '.': Target, '*': Box on target, '+': Player on target, ' ': Empty floor", "grid_map": "\n########\n# . $ #\n# @#\n# #\n########\n"} | Inspect the 2D Sokoban map. Choose among the listed legal move directions. | [
"A",
"B",
"C"
] | [
"UP: Move UP",
"DOWN: Move DOWN",
"LEFT: Move LEFT"
] | A | UP | {"gym": "sokoban", "level_size": "5x8", "aug_rot_k": 2, "aug_flip_h": false, "symbol_remap": {"wall": "#", "player": "@", "box": "$", "target": ".", "box_on_target": "*", "player_on_target": "+", "floor": " "}, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "UP"], "schema": "choice", "hard": false, "n_optio... |
piece | {"board_2d_map": "\n a b c d e f g h\n8 r n b q k b . r 8\n7 p p p . . . p p 7\n6 . . . . p . . . 6\n5 . . . p . p . . 5\n4 . . P P n . . . 4\n3 . . . . . N . . 3\n2 P P Q . . P P P 2\n1 R N B . K B . R 1\n a b c d e f g h\n", "fen": "rnbqkb1r/ppp3pp/4p3/3p1p2/2PPn3/5N2/PPQ2PPP/RNB1KB1R w KQkq - 0 6", "side_to_move":... | Use board_2d_map. Pick one piece that should move this turn. Prefer development, center control, and king safety. Reply with the option letter. | [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
] | [
"c2: white queen on c2",
"c4: white pawn on c4",
"h1: white rook on h1",
"b1: white knight on b1",
"a2: white pawn on a2",
"c1: white bishop on c1",
"f1: white bishop on f1",
"g2: white pawn on g2"
] | D | b1 | {"label_source": "stockfish", "best_uci": "b1c3", "n_options": 8, "gym": "chess", "task_schema": "staged_v1"} |
gridworld.hazard_alert | {"grid_map": "\nwwwwwww\n \nwsHsssw\n \nwswWttw\n \nwswsssw\n \nwwssstw\n \nwwsstsw\n \nwwwwwww\n", "legend": "'w': Wall, 'W': Player, 'H': Goal, 't': Deadly Trap, 's': Floor"} | Is the player (@) currently adjacent to a deadly trap (X)? | [
"A",
"B"
] | [
"yes: Immediate deadly trap nearby",
"no: Surroundings safe"
] | A | yes | {"gym": "gridworld", "schema": "noul", "task_schema": "action_v2", "symbol_remap": {"wall": "w", "player": "W", "goal": "H", "hazard": "t", "floor": "s"}} |
game2048.overflow_alert | {"grid_map": "\n+------+------+------+------+\n| 4 | 2 | 2 | 2 |\n+------+------+------+------+\n| 2 | 16 | 64 | 16 |\n+------+------+------+------+\n| 16 | 64 | 2 | . |\n+------+------+------+------+\n| 64 | 8 | . | 2 |\n+------+------+------+------+\n", "legend": "Numbers rep... | Is the 2048 board currently in immediate danger of overflowing and game over? | [
"A",
"B"
] | [
"yes: Grid almost full (danger of game over)",
"no: Grid has sufficient space"
] | A | yes | {"gym": "game2048", "schema": "noul", "task_schema": "action_v2", "empty_cells_count": 2} |
gridworld.move | {"grid_map": "\n# # # # # # # # #\n# . . . X . # . #\n# . . . . # . . #\n# . X . . . . . #\n# . . @ . . . . #\n# # . # X . . . #\n# . . . G . X . #\n# # . # . . . . #\n# # # # # # # # #\n", "legend": "'#': Wall, '@': Player, 'G': Goal, 'X': Deadly Trap, '.': Floor"} | Inspect the 2D GridWorld map. Choose among the listed legal move directions. | [
"A",
"B",
"C"
] | [
"RIGHT: Move RIGHT",
"LEFT: Move LEFT",
"UP: Move UP"
] | A | RIGHT | {"gym": "gridworld", "grid_size": "9x9", "aug_rot_k": 2, "aug_flip_h": false, "spawn": "random", "symbol_remap": {"wall": "#", "player": "@", "goal": "G", "hazard": "X", "floor": "."}, "task_schema": "action_v2", "legal_dirs": ["LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 3} |
destination | {"board_2d_map": "\n a b c d e f g h\n8 r n b q k b n r 8\n7 . p . . . p p . 7\n6 p . . p p . . p 6\n5 . . . . . . . . 5\n4 . . B P P . . . 4\n3 . . N . . N . . 3\n2 P P P . Q P P P 2\n1 R . B . K . . R 1\n a b c d e f g h\n", "fen": "rnbqkbnr/1p3pp1/p2pp2p/8/2BPP3/2N2N2/PPP1QPPP/R1B1K2R w KQkq - 0 7", "side_to_move"... | The piece on e1 is selected. Use board_2d_map. A piece is already selected. Choose the best legal destination. Reply with the option letter. | [
"A",
"B",
"C",
"D"
] | [
"e1d2: to d2",
"e1f1: to f1",
"e1g1: to g1",
"e1d1: to d1"
] | C | e1g1 | {"label_source": "stockfish", "selected_piece": "e1", "n_options": 4, "gym": "chess", "task_schema": "staged_v1"} |
game2048.slide | {"legend": "Numbers represent tile values; '.' represents an empty cell.", "grid_map": "\n+------+------+------+------+\n| . | . | . | . |\n+------+------+------+------+\n| . | . | . | . |\n+------+------+------+------+\n| 2 | . | . | . |\n+------+------+------+------+\n| 2 | .... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C",
"D"
] | [
"RIGHT: Slide RIGHT",
"DOWN: Slide DOWN",
"UP: Slide UP",
"LEFT: Slide LEFT"
] | B | DOWN | {"gym": "game2048", "max_tile": 2, "aug_rot_k": 3, "aug_flip_h": true, "empty_cells_count": 13, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 4} |
game2048.slide | {"highest_tile": 4, "grid_map": "\n+------+------+------+------+\n| . | . | . | . |\n+------+------+------+------+\n| . | . | . | . |\n+------+------+------+------+\n| 2 | . | . | . |\n+------+------+------+------+\n| . | . | 2 | 4 |\n+------+------+------+------+\n", "le... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C",
"D"
] | [
"RIGHT: Slide RIGHT",
"DOWN: Slide DOWN",
"UP: Slide UP",
"LEFT: Slide LEFT"
] | C | UP | {"gym": "game2048", "max_tile": 4, "aug_rot_k": 0, "aug_flip_h": false, "empty_cells_count": 13, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 4} |
connect4.drop | {"grid_map": "\n 1 2 3 4 5 6 7\n+---------------+ +\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| R R . . Y . . |\n+===============+\n", "legend": "'R': Red disc, 'Y': Yellow disc, '.': Empty slot. Columns are 1 to 7.", "turn": "Yellow (Y)"} | Inspect the 7x6 Connect Four board. Choose among the listed legal columns to drop your disc. | [
"A",
"B",
"C"
] | [
"3: Drop in Column 3",
"1: Drop in Column 1",
"5: Drop in Column 5"
] | B | 1 | {"gym": "connect4", "turn": "Y", "aug_mirror_h": true, "task_schema": "action_v2", "legal_columns": ["1", "2", "3", "4", "5", "6", "7"], "schema": "choice", "hard": false, "n_options": 3} |
sokoban.direction | {"grid_map": "\nzzzzzzzz\nzLLLLLTz\nzLLLLLXz\nzLLLLLuz\nzLLLLLLz\nzzzzzzzz\n", "legend": "'z': Wall, 'T': Player, 'X': Box, 'u': Target, 'Y': Box on target, '?': Player on target, 'L': Empty floor"} | Inspect the 2D Sokoban map. Choose among the listed legal move directions. | [
"A",
"B"
] | [
"DOWN: Move DOWN",
"LEFT: Move LEFT"
] | A | DOWN | {"gym": "sokoban", "level_size": "6x8", "aug_rot_k": 2, "aug_flip_h": true, "symbol_remap": {"wall": "z", "player": "T", "box": "X", "target": "u", "box_on_target": "Y", "player_on_target": "?", "floor": "L"}, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT"], "schema": "choice", "hard": false, "n_options": 2} |
game2048.slide | {"grid_map": "\n+------+------+------+------+\n| 2 | . | 4 | 64 |\n+------+------+------+------+\n| . | . | 16 | 8 |\n+------+------+------+------+\n| 2 | . | . | 8 |\n+------+------+------+------+\n| . | . | . | . |\n+------+------+------+------+\n", "legend": "Numbers rep... | Inspect the 4x4 2048 grid. Choose among the listed legal slide directions. | [
"A",
"B",
"C"
] | [
"UP: Slide UP",
"LEFT: Slide LEFT",
"DOWN: Slide DOWN"
] | A | UP | {"gym": "game2048", "max_tile": 64, "aug_rot_k": 1, "aug_flip_h": true, "empty_cells_count": 9, "task_schema": "action_v2", "legal_dirs": ["DOWN", "LEFT", "RIGHT", "UP"], "schema": "choice", "hard": false, "n_options": 3} |
connect4.drop | {"turn": "Red (R)", "grid_map": "\n 1 2 3 4 5 6 7\n+---------------+ +\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n| . . . . . . . |\n+===============+\n", "legend": "'R': Red disc, 'Y': Yellow disc, '.': Empty slot. Columns are 1 to 7."} | Inspect the 7x6 Connect Four board. Choose among the listed legal columns to drop your disc. | [
"A",
"B"
] | [
"2: Drop in Column 2",
"3: Drop in Column 3"
] | B | 3 | {"gym": "connect4", "turn": "R", "aug_mirror_h": false, "task_schema": "action_v2", "legal_columns": ["1", "2", "3", "4", "5", "6", "7"], "schema": "choice", "hard": false, "n_options": 2} |
word.definition | {"definition": "A large area covered chiefly with trees", "legend": "Choose the word that matches the definition."} | Which option matches the given definition? | [
"A",
"B",
"C",
"D"
] | [
"forest: forest",
"nectar: nectar",
"ribbon: ribbon",
"pepper: pepper"
] | A | forest | {"gym": "word_games", "kind": "definition", "schema": "choice", "hard": false, "n_options": 4, "vocab_split": "train"} |
debate.winner | {"side_b": {"label": "oppose", "claims": [{"text": "Ramp cost exceeds budget this half", "hard_evidence": true}, {"text": "Critical path needs senior ownership now", "hard_evidence": true}]}, "question": "We should hire more junior engineers", "rubric": "Prefer hard evidence over vibes; break ties toward the side with ... | Which side is better supported by evidence? Reply with one option letter. | [
"A",
"B"
] | [
"oppose: Side B — oppose the proposal",
"support: Side A — support the proposal"
] | B | support | {"gym": "debate_judge", "topic_id": "hire_junior", "topic_split": "train", "pro_ev": 2, "con_ev": 2, "schema": "choice", "hard": false, "n_options": 2} |
gridworld.hazard_alert | {"grid_map": "\n#########\n \n#...X...#\n \n#G..X@..#\n \n#......##\n \n#..X#..##\n \n#..X#...#\n \n##....X##\n \n#########\n", "legend": "'#': Wall, '@': Player, 'G': Goal, 'X': Deadly Trap, '.': Floor"} | Is the player (@) currently adjacent to a deadly trap (X)? | [
"A",
"B"
] | [
"yes: Immediate deadly trap nearby",
"no: Surroundings safe"
] | A | yes | {"gym": "gridworld", "schema": "noul", "task_schema": "action_v2", "symbol_remap": {"wall": "#", "player": "@", "goal": "G", "hazard": "X", "floor": "."}} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.