zechen-nlp commited on
Commit
9a89174
·
verified ·
1 Parent(s): 0a653ee

Automated MNLP evaluation report (2026-05-17)

Browse files
Files changed (1) hide show
  1. EVAL_REPORT.md +78 -0
EVAL_REPORT.md ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Automated MNLP evaluation report
2
+
3
+ - **Model repo:** [`cs-552-2026-vibe-trainers/math_model`](https://huggingface.co/cs-552-2026-vibe-trainers/math_model)
4
+ - **Owner(s):** group **vibe-trainers**
5
+ - **Generated at:** 2026-05-17T04:52:19+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
+ ## Summary
11
+
12
+ | Benchmark | Accuracy | Status |
13
+ |---|---:|---|
14
+ | Math | 0.0900 | ok |
15
+ | Knowledge | — | not run |
16
+ | Multilingual | — | not run |
17
+ | Safety | — | not run |
18
+
19
+ ## Sample completions
20
+
21
+ _Prompts are intentionally omitted to avoid revealing benchmark contents. For multi-completion problems, only one completion is shown per sample._
22
+
23
+ ### Math
24
+
25
+ **Correct** (1 shown)
26
+
27
+ - **reference**: `\frac65`
28
+ - **overall** (4/8 completions correct)
29
+ - **extracted** (✓): `\frac{6}{5}`
30
+ - **completion**:
31
+
32
+ ```text
33
+ <think>
34
+ The equation is $5x^2 -6x + 24 + \frac{1}{x} = 0$ or $5x^3 -6x^2 + 24x + 1 = 0$. Let $f(x) = 5x^3 -6x^2 + 24x + 1$. The sum of the roots of this cubic is $\frac{6}{5}$. Thus $a+b+c = \boxed{\frac{6}{5}}$.
35
+ </think>
36
+
37
+ #### $\frac{6}{5}$
38
+ ```
39
+
40
+ **Incorrect** (1 shown)
41
+
42
+ - **reference**: `\frac{7}{2}`
43
+ - **overall** (0/8 completions correct)
44
+ - **extracted** (✗): `3`
45
+ - **completion**:
46
+
47
+ ```text
48
+ <think>
49
+ From the first two equations, we can subtract them and obtain
50
+ $$
51
+ a^2+ab+b^2 - (a^2+ac+c^2) = 3(a+b) - 3(a+c) \Rightarrow ab - ac + b^2 - c^2 = 3b - 3c$$
52
+ $$
53
+ \Rightarrow (b - c)(a + b + c) = 3(b - c)$$
54
+ If $b \ne c$, we can divide both sides by $b - c$, obtaining
55
+ $$
56
+ a + b + c = 3$$
57
+ Now, we use the third equation, and the fact that $a + b + c = 3$, to obtain
58
+ $$
59
+ b^2 + bc + c^2 = 5(b + c) + 1 \Rightarrow (b + c)^2 - bc = 5(b + c) + 1$$
60
+ Let $s = b + c$, so we obtain
61
+ $$
62
+ s^2 - bc = 5s + 1 \Rightarrow bc = s^2 - 5s - 1$$
63
+ We also know from the first two equations, that $a = 3 - s$, and from the first equation, we have
64
+ $$
65
+ (3 - s)^2 + (3 - s)s + s^2 = 3(3 - s) + 3s$$
66
+ $$
67
+ \Rightarrow 9 - 6s + s^2 + 3s - s^2 + s^2 = 9 - 3s + 3s$$
68
+ $$
69
+ \Rightarrow s^2 - 3s + 9 = 9 \Rightarrow s^2 - 3s = 0 \Rightarrow s(s - 3) = 0$$
70
+ Therefore, $s = 0$ or $s = 3$
71
+ If $s = 0$, then $a = 3 - 0 = 3$, and $bc = 0^2 - 5(0) - 1 = -1$
72
+ If $s = 3$, then $a = 3 - 3 = 0$, and $bc = 3^2 - 5(3) - 1 = 9 - 15 - 1 = -7$
73
+ Therefore, we have two possibilities for $a$: either $a = 3$ or $a = 0$
74
+ We now check each of these possibilities in the third equation
75
+ If $a = 3$, then $b + c = 0$, and $bc = -1$, so $b$ and $c$ are the roots of $x^2 + 1 = 0$
76
+ If $a = 0$, then $b + c = 3$, and $bc = -7$, so $b$ and $c$ are the roots of $x^2 - 3x - 7 = 0$
77
+ Therefore, the possible values for $a$ are $\boxed{0}$ and $\boxed{3}$
78
+ ```