Pacific-i64 commited on
Commit
576c0c4
·
verified ·
1 Parent(s): 8ea9cfb

Add ARC-Challenge and Combined ARC results

Browse files
README.md CHANGED
@@ -44,14 +44,18 @@ and lowest held-out SFT loss across the three epochs.
44
  |---|---|---:|---:|---:|---|
45
  | PIQA | validation | 1,838 | **68.01%** | **69.10%** | PyTorch FP16, custom Triton |
46
  | ARC-Easy | test | 2,376 | **57.24%** | **52.86%** | MLX FP16 |
 
 
47
  | HellaSwag | validation | 10,042 | **33.21%** | **38.74%** | MLX FP16 |
48
 
49
- All three benchmarks use zero-shot causal continuation log-likelihood, no
50
  chat template and a maximum sequence length of 2,048. Accuracy selects the
51
  choice with the highest total continuation log-likelihood; the normalized
52
  metric selects by mean continuation log-likelihood per scored token. PIQA was
53
- evaluated from the native epoch-3 checkpoint. ARC-Easy and HellaSwag were
54
  evaluated from an FP16 MLX conversion of the same root F32 SafeTensors weights.
 
 
55
  Machine-readable reports are published under `reports/sft-v2-300k/`.
56
 
57
  ## Training recipe
 
44
  |---|---|---:|---:|---:|---|
45
  | PIQA | validation | 1,838 | **68.01%** | **69.10%** | PyTorch FP16, custom Triton |
46
  | ARC-Easy | test | 2,376 | **57.24%** | **52.86%** | MLX FP16 |
47
+ | ARC-Challenge | test | 1,172 | **27.13%** | **29.01%** | MLX FP16 |
48
+ | **ARC Combined (micro)** | test | **3,548** | **47.29%** | **44.98%** | Derived from both ARC test splits |
49
  | HellaSwag | validation | 10,042 | **33.21%** | **38.74%** | MLX FP16 |
50
 
51
+ All benchmark evaluations use zero-shot causal continuation log-likelihood, no
52
  chat template and a maximum sequence length of 2,048. Accuracy selects the
53
  choice with the highest total continuation log-likelihood; the normalized
54
  metric selects by mean continuation log-likelihood per scored token. PIQA was
55
+ evaluated from the native epoch-3 checkpoint. ARC and HellaSwag were
56
  evaluated from an FP16 MLX conversion of the same root F32 SafeTensors weights.
57
+ ARC Combined is the micro-average over all 3,548 ARC-Easy and ARC-Challenge
58
+ test examples, not the arithmetic mean of the two percentages.
59
  Machine-readable reports are published under `reports/sft-v2-300k/`.
60
 
61
  ## Training recipe
release_manifest.json CHANGED
@@ -1,6 +1,21 @@
1
  {
2
  "architecture": "tr_hash_moe",
3
  "benchmarks": {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  "arc_easy": {
5
  "acc": 0.5723905723905723,
6
  "acc_norm": 0.5286195286195287,
 
1
  {
2
  "architecture": "tr_hash_moe",
3
  "benchmarks": {
4
+ "arc_challenge": {
5
+ "acc": 0.2713310580204778,
6
+ "acc_norm": 0.2901023890784983,
7
+ "backend": "mlx-fp16",
8
+ "examples": 1172,
9
+ "split": "test"
10
+ },
11
+ "arc_combined": {
12
+ "acc": 0.4729425028184893,
13
+ "acc_norm": 0.44983089064261555,
14
+ "aggregation": "micro-average over ARC-Easy and ARC-Challenge",
15
+ "backend": "derived",
16
+ "examples": 3548,
17
+ "split": "test"
18
+ },
19
  "arc_easy": {
20
  "acc": 0.5723905723905723,
21
  "acc_norm": 0.5286195286195287,
reports/sft-v2-300k/arc_challenge_epoch3.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "benchmark": "arc_challenge",
3
+ "split": "test",
4
+ "examples": 1172,
5
+ "correct": 318,
6
+ "correct_norm": 340,
7
+ "acc": 0.2713310580204778,
8
+ "acc_norm": 0.2901023890784983,
9
+ "backend": "mlx-fp16",
10
+ "zero_shot": true,
11
+ "chat_template_applied": false,
12
+ "max_length": 2048,
13
+ "scoring": "causal_choice_loglikelihood"
14
+ }
reports/sft-v2-300k/arc_combined_epoch3.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "benchmark": "arc_combined",
3
+ "split": "test",
4
+ "examples": 3548,
5
+ "correct": 1678,
6
+ "correct_norm": 1596,
7
+ "acc": 0.4729425028184893,
8
+ "acc_norm": 0.44983089064261555,
9
+ "aggregation": "micro-average over ARC-Easy and ARC-Challenge",
10
+ "zero_shot": true,
11
+ "chat_template_applied": false,
12
+ "max_length": 2048,
13
+ "scoring": "causal_choice_loglikelihood"
14
+ }