ereniko commited on
Commit
eeec8c2
·
verified ·
1 Parent(s): 64083f6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -16
README.md CHANGED
@@ -54,15 +54,16 @@ Nearly every setting above matches v1 on purpose. The point of v2 was to isolate
54
 
55
  ## Benchmarks
56
 
57
- Benchmarks were run with a custom harness this time. We won't put İvme-Conversate-v2 to leaderboards for now until we verify our benchmark produces real results.
58
 
59
  | Benchmark | v1 | v2 |
60
  |---|---|---|
61
- | WikiText-2 (byte perplexity) ↓ | 2.96 | **2.50** |
62
- | BLiMP (macro-average) ↑ | 61.40% | **73.19%** |
63
- | ARC-Easy ↑ | 30.85% | **43.14%** |
 
64
 
65
- Every metric improved, and the ARC-Easy jump in particular is bigger than you would expect from data and training changes alone at this parameter count.
66
 
67
  ### BLiMP paradigm breakdown
68
 
@@ -70,22 +71,22 @@ Strong on core agreement paradigms:
70
 
71
  | Paradigm | Accuracy |
72
  |---|---|
73
- | existential_there_quantifiers_1 | 99.10% |
74
- | anaphor_number_agreement | 98.30% |
75
- | sentential_negation_npi_licensor_present | 98.10% |
76
- | determiner_noun_agreement_1 | 96.60% |
77
- | determiner_noun_agreement_2 | 95.40% |
78
- | anaphor_gender_agreement | 90.70% |
79
 
80
  Weaker on long-distance dependencies and island constraints, a known hard case for small models:
81
 
82
  | Paradigm | Accuracy |
83
  |---|---|
84
- | existential_there_quantifiers_2 | 18.90% |
85
- | left_branch_island_echo_question | 27.80% |
86
- | sentential_subject_island | 33.80% |
87
- | only_npi_scope | 42.60% |
88
- | complex_NP_island | 50.30% |
89
 
90
  This pattern, strong local agreement paired with weaker long-distance syntax, is typical for models at this scale.
91
 
 
54
 
55
  ## Benchmarks
56
 
57
+ Benchmarks were run with lm-evaluation-harness via a custom model adapter (previous numbers from an internal script have been superseded by these).
58
 
59
  | Benchmark | v1 | v2 |
60
  |---|---|---|
61
+ | WikiText-2 (byte perplexity) ↓ | 2.96 | **2.2250** |
62
+ | BLiMP (macro-average, 68 paradigms) ↑ | 61.40% | **75.09%** |
63
+ | ARC-Easy (acc_norm) ↑ | 30.85% | **39.98%** |
64
+ | ARC-Easy (acc) ↑ | — | **43.56%** |
65
 
66
+ Every metric improved. The ARC-Easy acc_norm gain (30.85% → 39.98%) is more modest than the raw acc numbers alone suggest, but still a real improvement over v1.
67
 
68
  ### BLiMP paradigm breakdown
69
 
 
71
 
72
  | Paradigm | Accuracy |
73
  |---|---|
74
+ | blimp_principle_A_case_1 | 100.00% |
75
+ | blimp_existential_there_quantifiers_1 | 99.40% |
76
+ | blimp_anaphor_number_agreement | 98.00% |
77
+ | blimp_sentential_negation_npi_licensor_present | 97.30% |
78
+ | blimp_determiner_noun_agreement_1 | 96.90% |
79
+ | blimp_principle_A_domain_1 | 95.40% |
80
 
81
  Weaker on long-distance dependencies and island constraints, a known hard case for small models:
82
 
83
  | Paradigm | Accuracy |
84
  |---|---|
85
+ | blimp_wh_vs_that_with_gap_long_distance | 17.20% |
86
+ | blimp_existential_there_quantifiers_2 | 30.20% |
87
+ | blimp_left_branch_island_echo_question | 31.40% |
88
+ | blimp_superlative_quantifiers_2 | 33.20% |
89
+ | blimp_principle_A_reconstruction | 36.10% |
90
 
91
  This pattern, strong local agreement paired with weaker long-distance syntax, is typical for models at this scale.
92