Automated MNLP evaluation report (2026-06-11)

#1
Files changed (1) hide show
  1. EVAL_REPORT.md +146 -0
EVAL_REPORT.md ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Automated MNLP evaluation report
2
+
3
+ - **Model repo:** [`cs-552-2026-busybees/math_model`](https://huggingface.co/cs-552-2026-busybees/math_model)
4
+ - **Owner(s):** group **busybees**
5
+ - **Generated at:** 2026-06-11T06:23:10+00:00 (UTC)
6
+ - **Pipeline:** [mnlp-project-ci](https://github.com/eric11eca/mnlp-project-ci)
7
+
8
+ _This PR is opened automatically by the course CI. It is **non-blocking** — you do not need to merge it. The next nightly run will refresh this file._
9
+
10
+ ## Evaluated checkpoint
11
+
12
+ - **Commit:** [`2f98a7f`](https://huggingface.co/cs-552-2026-busybees/math_model/commit/2f98a7f296cf22e3b8ed58d9a10030746e6edfbc)
13
+ - **Message:** Upload folder using huggingface_hub
14
+ - **Committed:** 2026-06-10T21:54:11+00:00
15
+
16
+ ## Summary
17
+
18
+ | Benchmark | Accuracy | Status |
19
+ |---|---:|---|
20
+ | Math | 0.5200 | ok |
21
+ | Knowledge | — | not run |
22
+ | Multilingual | — | not run |
23
+ | Safety | — | not run |
24
+
25
+ ## Sample completions
26
+
27
+ _Prompts are intentionally omitted to avoid revealing benchmark contents. For multi-completion problems, only one completion is shown per sample._
28
+
29
+ ### Math
30
+
31
+ **Correct** (1 shown)
32
+
33
+ - **reference**: `70`
34
+ - **overall** (8/8 completions correct)
35
+ - **extracted** (✓): `70`
36
+ - **completion**:
37
+
38
+ ```text
39
+ <think>
40
+ Okay, so I need to find all integer bases b greater than 9 where the base-b number 17 divides the base-b number 97. Then sum all those bases. Hmm, let's start by understanding what the problem is asking.
41
+
42
+ First, in base b, the number 17 is written as 1*b^1 + 7*b^0, right? Similarly, 97 in base b is 9*b^1 + 7*b^0. So, when we say that the base-b number 17 divides 97, we mean that when we co
43
+
44
+ ... [truncated 823 chars] ...
45
+
46
+ use the Euclidean algorithm:
47
+ \[
48
+ \frac{9b + 7}{b + 7} = 9 - \frac{56}{b + 7}
49
+ \]
50
+ - For this to be an integer, \( b + 7 \) must be a divisor of 56.
51
+
52
+ 4. **Identify the divisors of 56:**
53
+ - The divisors of 56 are: \( 1, 2, 4, 7, 8, 14, 28, 56 \).
54
+
55
+ 5. **Determine valid values for \( b \):**
56
+ - Since \( b > 9 \), we need \( b + 7 > 16 \).
57
+ - The divisors of 56 greater than 16 are: \( 28 \) and \( 56 \).
58
+ - Therefore, \( b + 7 = 28 \) or \( b + 7 = 56 \).
59
+ - Solving these, we get:
60
+ \[
61
+ b = 28 - 7 = 21 \quad \text{and} \quad b = 56 - 7 = 49
62
+ \]
63
+
64
+ 6. **Verify the solutions:**
65
+ - For \( b = 21 \):
66
+ \[
67
+ \frac{9 \cdot 21 + 7}{21 + 7} = \frac{189 + 7}{28} = \frac{196}{28} = 7
68
+ \]
69
+ - For \( b = 49 \):
70
+ \[
71
+ \frac{9 \cdot 49 + 7}{49 + 7} = \frac{441 + 7}{56} = \frac{448}{56} = 8
72
+ \]
73
+ - Both values of \( b \) satisfy the condition.
74
+
75
+ 7. **Sum the valid bases:**
76
+ - The valid bases are \( 21 \) and \( 49 \).
77
+ - The sum of these bases is:
78
+ \[
79
+ 21 + 49 = 70
80
+ \]
81
+
82
+ Thus, the sum of all integer values of the base \( b \) greater than 9 for which the base-\( b \) number 17 divides the base-\( b \) number 97 is \(\boxed{70}\).
83
+ ```
84
+
85
+ **Incorrect** (1 shown)
86
+
87
+ - **reference**: `60750, 854130, 854970`
88
+ - **overall** (0/8 completions correct)
89
+ - **extracted** (✗): `854130`
90
+ - **completion**:
91
+
92
+ ```text
93
+ <think>
94
+ Okay, so I need to solve this problem where there's a function h from the natural numbers to natural numbers excluding 1. The condition given is that for every natural number n, h(n) + h(n+1) equals h(n+2) times h(n+3) minus 840. And the question is asking for every possible value that the sum of h(i) from i=1 to 2025 can take.
95
+
96
+ Hmm, let's start by understanding the functional equation. Th
97
+
98
+ ... [truncated 823 chars] ...
99
+
100
+ \) is the only valid solution. Therefore, the constant solution is:
101
+ \[
102
+ h(n) = 30 \quad \text{for all} \quad n
103
+ \]
104
+ The sum from \( i = 1 \) to \( 2025 \) is:
105
+ \[
106
+ \sum_{i=1}^{2025} 30 = 2025 \times 30 = 60750
107
+ \]
108
+
109
+ ### Step 2: Periodic Solution
110
+ Next, consider a periodic solution with period 2. Assume \( h(n) = 2 \) for even \( n \) and \( h(n) = 842 \) for odd \( n \). We need to verify if this satisfies the functional equation.
111
+
112
+ For even \( n \):
113
+ \[
114
+ h(n) = 2, \quad h(n+1) = 842
115
+ \]
116
+ \[
117
+ h(n+2) = 842, \quad h(n+3) = 2
118
+ \]
119
+ Substitute into the equation:
120
+ \[
121
+ 2 + 842 = 842 \times 2 - 840 \implies 844 = 1684 - 840 \implies 844 = 844
122
+ \]
123
+ This holds true. Similarly, for odd \( n \):
124
+ \[
125
+ h(n) = 842, \quad h(n+1) = 2
126
+ \]
127
+ \[
128
+ h(n+2) = 2, \quad h(n+3) = 842
129
+ \]
130
+ Substitute into the equation:
131
+ \[
132
+ 842 + 2 = 2 \times 842 - 840 \implies 844 = 1684 - 840 \implies 844 = 844
133
+ \]
134
+ This also holds true. Therefore, the periodic solution with period 2 is valid.
135
+
136
+ The sum from \( i = 1 \) to \( 2025 \) is:
137
+ \[
138
+ \sum_{i=1}^{2025} (2 + 842) = 1013 \times 2 + 1012 \times 842 = 2026 + 852104 = 854130
139
+ \]
140
+
141
+ ### Conclusion
142
+ The possible sums for \( \sum_{i=1}^{2025} h(i) \) are:
143
+ \[
144
+ \boxed{60750} \quad \text{and} \quad \boxed{854130}
145
+ \]
146
+ ```