eleusis-simple-rules / rules.jsonl
nph4rd's picture
Update to v3 no-OR 36-rule curriculum
fb6a319 verified
Raw
History Blame Contribute Delete
11.3 kB
{"accepted_cards": ["R1", "R2", "R3", "R4"], "code": "return card.color == \"red\"", "dataset_version": "v3-no-or-36", "family": "single_axis", "label": "red cards", "rejected_cards": ["B1", "B2", "B3", "B4"], "rule_id": "red_cards", "rule_index": 0, "split": "train", "split_index": 0}
{"accepted_cards": ["R1", "R2", "B1", "B2"], "code": "return card.rank <= 2", "dataset_version": "v3-no-or-36", "family": "rank_region", "label": "ranks 1 or 2", "rejected_cards": ["R3", "R4", "B3", "B4"], "rule_id": "low_ranks", "rule_index": 1, "split": "train", "split_index": 1}
{"accepted_cards": ["R1", "B1"], "code": "return card.rank == 1", "dataset_version": "v3-no-or-36", "family": "exact_rank", "label": "rank 1", "rejected_cards": ["R2", "R3", "R4", "B2", "B3", "B4"], "rule_id": "rank_is_1", "rule_index": 2, "split": "train", "split_index": 2}
{"accepted_cards": ["R2", "R3", "R4", "B2", "B3", "B4"], "code": "return card.rank != 1", "dataset_version": "v3-no-or-36", "family": "rank_exclusion", "label": "not rank 1", "rejected_cards": ["R1", "B1"], "rule_id": "rank_not_1", "rule_index": 3, "split": "test", "split_index": 3}
{"accepted_cards": ["R2", "R4"], "code": "return card.color == \"red\" and card.rank % 2 == 0", "dataset_version": "v3-no-or-36", "family": "color_and_parity", "label": "red even cards", "rejected_cards": ["R1", "R3", "B1", "B2", "B3", "B4"], "rule_id": "red_even", "rule_index": 4, "split": "train", "split_index": 4}
{"accepted_cards": ["R1", "R2"], "code": "return card.color == \"red\" and card.rank <= 2", "dataset_version": "v3-no-or-36", "family": "color_and_rank_region_linear", "label": "red ranks 1 or 2", "rejected_cards": ["R3", "R4", "B1", "B2", "B3", "B4"], "rule_id": "red_low", "rule_index": 5, "split": "train", "split_index": 5}
{"accepted_cards": ["R1", "R4"], "code": "return card.color == \"red\" and card.rank in {1, 4}", "dataset_version": "v3-no-or-36", "family": "color_and_rank_region_cross", "label": "red ranks 1 or 4", "rejected_cards": ["R2", "R3", "B1", "B2", "B3", "B4"], "rule_id": "red_edge", "rule_index": 6, "split": "train", "split_index": 6}
{"accepted_cards": ["R2", "R3", "R4"], "code": "return card.color == \"red\" and card.rank != 1", "dataset_version": "v3-no-or-36", "family": "color_and_rank_exclusion_edge", "label": "red cards that are not rank 1", "rejected_cards": ["R1", "B1", "B2", "B3", "B4"], "rule_id": "red_not_1", "rule_index": 7, "split": "train", "split_index": 7}
{"accepted_cards": ["R1", "R3", "R4"], "code": "return card.color == \"red\" and card.rank != 2", "dataset_version": "v3-no-or-36", "family": "color_and_rank_exclusion_middle", "label": "red cards that are not rank 2", "rejected_cards": ["R2", "B1", "B2", "B3", "B4"], "rule_id": "red_not_2", "rule_index": 8, "split": "test", "split_index": 8}
{"accepted_cards": ["B1", "B2", "B3", "B4"], "code": "return card.color == \"blue\"", "dataset_version": "v3-no-or-36", "family": "single_axis", "label": "blue cards", "rejected_cards": ["R1", "R2", "R3", "R4"], "rule_id": "blue_cards", "rule_index": 9, "split": "train", "split_index": 9}
{"accepted_cards": ["R3", "R4", "B3", "B4"], "code": "return card.rank >= 3", "dataset_version": "v3-no-or-36", "family": "rank_region", "label": "ranks 3 or 4", "rejected_cards": ["R1", "R2", "B1", "B2"], "rule_id": "high_ranks", "rule_index": 10, "split": "train", "split_index": 10}
{"accepted_cards": ["R2", "B2"], "code": "return card.rank == 2", "dataset_version": "v3-no-or-36", "family": "exact_rank", "label": "rank 2", "rejected_cards": ["R1", "R3", "R4", "B1", "B3", "B4"], "rule_id": "rank_is_2", "rule_index": 11, "split": "train", "split_index": 11}
{"accepted_cards": ["R1", "R3", "R4", "B1", "B3", "B4"], "code": "return card.rank != 2", "dataset_version": "v3-no-or-36", "family": "rank_exclusion", "label": "not rank 2", "rejected_cards": ["R2", "B2"], "rule_id": "rank_not_2", "rule_index": 12, "split": "train", "split_index": 12}
{"accepted_cards": ["R1", "R3"], "code": "return card.color == \"red\" and card.rank % 2 == 1", "dataset_version": "v3-no-or-36", "family": "color_and_parity", "label": "red odd cards", "rejected_cards": ["R2", "R4", "B1", "B2", "B3", "B4"], "rule_id": "red_odd", "rule_index": 13, "split": "train", "split_index": 13}
{"accepted_cards": ["R3", "R4"], "code": "return card.color == \"red\" and card.rank >= 3", "dataset_version": "v3-no-or-36", "family": "color_and_rank_region_linear", "label": "red ranks 3 or 4", "rejected_cards": ["R1", "R2", "B1", "B2", "B3", "B4"], "rule_id": "red_high", "rule_index": 14, "split": "train", "split_index": 14}
{"accepted_cards": ["R2", "R3"], "code": "return card.color == \"red\" and card.rank in {2, 3}", "dataset_version": "v3-no-or-36", "family": "color_and_rank_region_cross", "label": "red ranks 2 or 3", "rejected_cards": ["R1", "R4", "B1", "B2", "B3", "B4"], "rule_id": "red_middle", "rule_index": 15, "split": "test", "split_index": 15}
{"accepted_cards": ["R1", "R2", "R3"], "code": "return card.color == \"red\" and card.rank != 4", "dataset_version": "v3-no-or-36", "family": "color_and_rank_exclusion_edge", "label": "red cards that are not rank 4", "rejected_cards": ["R4", "B1", "B2", "B3", "B4"], "rule_id": "red_not_4", "rule_index": 16, "split": "train", "split_index": 16}
{"accepted_cards": ["R1", "R2", "R4"], "code": "return card.color == \"red\" and card.rank != 3", "dataset_version": "v3-no-or-36", "family": "color_and_rank_exclusion_middle", "label": "red cards that are not rank 3", "rejected_cards": ["R3", "B1", "B2", "B3", "B4"], "rule_id": "red_not_3", "rule_index": 17, "split": "train", "split_index": 17}
{"accepted_cards": ["R2", "R4", "B2", "B4"], "code": "return card.rank % 2 == 0", "dataset_version": "v3-no-or-36", "family": "single_axis", "label": "even ranks", "rejected_cards": ["R1", "R3", "B1", "B3"], "rule_id": "even_ranks", "rule_index": 18, "split": "train", "split_index": 18}
{"accepted_cards": ["R1", "R4", "B1", "B4"], "code": "return card.rank in {1, 4}", "dataset_version": "v3-no-or-36", "family": "rank_region", "label": "ranks 1 or 4", "rejected_cards": ["R2", "R3", "B2", "B3"], "rule_id": "edge_ranks", "rule_index": 19, "split": "test", "split_index": 19}
{"accepted_cards": ["R3", "B3"], "code": "return card.rank == 3", "dataset_version": "v3-no-or-36", "family": "exact_rank", "label": "rank 3", "rejected_cards": ["R1", "R2", "R4", "B1", "B2", "B4"], "rule_id": "rank_is_3", "rule_index": 20, "split": "train", "split_index": 20}
{"accepted_cards": ["R1", "R2", "R4", "B1", "B2", "B4"], "code": "return card.rank != 3", "dataset_version": "v3-no-or-36", "family": "rank_exclusion", "label": "not rank 3", "rejected_cards": ["R3", "B3"], "rule_id": "rank_not_3", "rule_index": 21, "split": "train", "split_index": 21}
{"accepted_cards": ["B2", "B4"], "code": "return card.color == \"blue\" and card.rank % 2 == 0", "dataset_version": "v3-no-or-36", "family": "color_and_parity", "label": "blue even cards", "rejected_cards": ["R1", "R2", "R3", "R4", "B1", "B3"], "rule_id": "blue_even", "rule_index": 22, "split": "train", "split_index": 22}
{"accepted_cards": ["B1", "B2"], "code": "return card.color == \"blue\" and card.rank <= 2", "dataset_version": "v3-no-or-36", "family": "color_and_rank_region_linear", "label": "blue ranks 1 or 2", "rejected_cards": ["R1", "R2", "R3", "R4", "B3", "B4"], "rule_id": "blue_low", "rule_index": 23, "split": "train", "split_index": 23}
{"accepted_cards": ["B1", "B4"], "code": "return card.color == \"blue\" and card.rank in {1, 4}", "dataset_version": "v3-no-or-36", "family": "color_and_rank_region_cross", "label": "blue ranks 1 or 4", "rejected_cards": ["R1", "R2", "R3", "R4", "B2", "B3"], "rule_id": "blue_edge", "rule_index": 24, "split": "train", "split_index": 24}
{"accepted_cards": ["B2", "B3", "B4"], "code": "return card.color == \"blue\" and card.rank != 1", "dataset_version": "v3-no-or-36", "family": "color_and_rank_exclusion_edge", "label": "blue cards that are not rank 1", "rejected_cards": ["R1", "R2", "R3", "R4", "B1"], "rule_id": "blue_not_1", "rule_index": 25, "split": "train", "split_index": 25}
{"accepted_cards": ["B1", "B3", "B4"], "code": "return card.color == \"blue\" and card.rank != 2", "dataset_version": "v3-no-or-36", "family": "color_and_rank_exclusion_middle", "label": "blue cards that are not rank 2", "rejected_cards": ["R1", "R2", "R3", "R4", "B2"], "rule_id": "blue_not_2", "rule_index": 26, "split": "train", "split_index": 26}
{"accepted_cards": ["R1", "R3", "B1", "B3"], "code": "return card.rank % 2 == 1", "dataset_version": "v3-no-or-36", "family": "single_axis", "label": "odd ranks", "rejected_cards": ["R2", "R4", "B2", "B4"], "rule_id": "odd_ranks", "rule_index": 27, "split": "test", "split_index": 27}
{"accepted_cards": ["R2", "R3", "B2", "B3"], "code": "return card.rank in {2, 3}", "dataset_version": "v3-no-or-36", "family": "rank_region", "label": "ranks 2 or 3", "rejected_cards": ["R1", "R4", "B1", "B4"], "rule_id": "middle_ranks", "rule_index": 28, "split": "train", "split_index": 28}
{"accepted_cards": ["R4", "B4"], "code": "return card.rank == 4", "dataset_version": "v3-no-or-36", "family": "exact_rank", "label": "rank 4", "rejected_cards": ["R1", "R2", "R3", "B1", "B2", "B3"], "rule_id": "rank_is_4", "rule_index": 29, "split": "test", "split_index": 29}
{"accepted_cards": ["R1", "R2", "R3", "B1", "B2", "B3"], "code": "return card.rank != 4", "dataset_version": "v3-no-or-36", "family": "rank_exclusion", "label": "not rank 4", "rejected_cards": ["R4", "B4"], "rule_id": "rank_not_4", "rule_index": 30, "split": "train", "split_index": 30}
{"accepted_cards": ["B1", "B3"], "code": "return card.color == \"blue\" and card.rank % 2 == 1", "dataset_version": "v3-no-or-36", "family": "color_and_parity", "label": "blue odd cards", "rejected_cards": ["R1", "R2", "R3", "R4", "B2", "B4"], "rule_id": "blue_odd", "rule_index": 31, "split": "test", "split_index": 31}
{"accepted_cards": ["B3", "B4"], "code": "return card.color == \"blue\" and card.rank >= 3", "dataset_version": "v3-no-or-36", "family": "color_and_rank_region_linear", "label": "blue ranks 3 or 4", "rejected_cards": ["R1", "R2", "R3", "R4", "B1", "B2"], "rule_id": "blue_high", "rule_index": 32, "split": "test", "split_index": 32}
{"accepted_cards": ["B2", "B3"], "code": "return card.color == \"blue\" and card.rank in {2, 3}", "dataset_version": "v3-no-or-36", "family": "color_and_rank_region_cross", "label": "blue ranks 2 or 3", "rejected_cards": ["R1", "R2", "R3", "R4", "B1", "B4"], "rule_id": "blue_middle", "rule_index": 33, "split": "train", "split_index": 33}
{"accepted_cards": ["B1", "B2", "B3"], "code": "return card.color == \"blue\" and card.rank != 4", "dataset_version": "v3-no-or-36", "family": "color_and_rank_exclusion_edge", "label": "blue cards that are not rank 4", "rejected_cards": ["R1", "R2", "R3", "R4", "B4"], "rule_id": "blue_not_4", "rule_index": 34, "split": "test", "split_index": 34}
{"accepted_cards": ["B1", "B2", "B4"], "code": "return card.color == \"blue\" and card.rank != 3", "dataset_version": "v3-no-or-36", "family": "color_and_rank_exclusion_middle", "label": "blue cards that are not rank 3", "rejected_cards": ["R1", "R2", "R3", "R4", "B3"], "rule_id": "blue_not_3", "rule_index": 35, "split": "train", "split_index": 35}