Linker1907 commited on
Commit
cc0fec9
·
1 Parent(s): e9ae9ea

add eval.yaml

Browse files
Files changed (1) hide show
  1. eval.yaml +17 -11
eval.yaml CHANGED
@@ -13,19 +13,25 @@ tasks:
13
  subset: main
14
  splits: test
15
 
 
 
 
16
  field_spec:
17
  input: question
18
  target: answer
19
 
20
- solvers: ["prompt_template", "generate"]
21
-
22
- scorers: ["model_graded_fact"]
23
-
24
- prompt_template: >
25
- Solve the following math problem efficiently and clearly. The last line
26
- of your response should be of the following format: 'Therefore, the final
27
- answer is: $\\boxed{{ANSWER}}$. I hope it is correct' (without quotes)
28
- where ANSWER is just the final number or expression that solves the
29
- problem. Think step by step before answering.
30
 
31
- {{prompt}}
 
 
 
 
 
13
  subset: main
14
  splits: test
15
 
16
+ epochs: 4
17
+ epoch_reducer: pass_at_1
18
+
19
  field_spec:
20
  input: question
21
  target: answer
22
 
23
+ solvers:
24
+ - name: prompt_template
25
+ args:
26
+ template: >
27
+ Solve the following math problem efficiently and clearly. The last line
28
+ of your response should be of the following format: 'Therefore, the final
29
+ answer is: $\\boxed{ANSWER}$. I hope it is correct' (without quotes)
30
+ where ANSWER is just the final number or expression that solves the
31
+ problem. Think step by step before answering.
 
32
 
33
+ {prompt}
34
+ - name: generate
35
+
36
+ scorers:
37
+ - name: model_graded_fact