WuChengyue commited on
Commit
bd4b87a
·
verified ·
1 Parent(s): 366a05d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +82 -0
README.md CHANGED
@@ -1,3 +1,85 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ datasets:
4
+ - meta-math/MetaMathQA
5
+ language:
6
+ - en
7
+ metrics:
8
+ - accuracy
9
  ---
10
+ ---
11
+ license: apache-2.0
12
+ datasets:
13
+ - meta-math/MetaMathQA
14
+ ---
15
+ see our paper in https://arxiv.org/abs/2401.02415
16
+
17
+ View the project page:
18
+ https://github.com/TencentARC/LLaMA-Pro
19
+
20
+
21
+ ## Model Details
22
+
23
+ MetaMath-Mistral-Pro is fully fine-tuned on the MetaMathQA datasets and based on the powerful Mistral-Pro model.
24
+
25
+
26
+ ## Model Usage
27
+
28
+ prompting template:
29
+
30
+ '''
31
+
32
+ "Below is an instruction that describes a task. "
33
+ "Write a response that appropriately completes the request.\n\n"
34
+ "### Instruction:\n{instruction}\n\n### Response: Let's think step by step."
35
+
36
+ '''
37
+
38
+ where you need to use your query question to replace the {instruction}
39
+
40
+ ## Experiments
41
+
42
+ | Model | GSM8k Pass@1 | MATH Pass@1 |
43
+ |---------------------|--------------|-------------|
44
+ | MPT-7B | 6.8 | 3.0 |
45
+ | Falcon-7B | 6.8 | 2.3 |
46
+ | LLaMA-1-7B | 11.0 | 2.9 |
47
+ | LLaMA-2-7B | 14.6 | 2.5 |
48
+ | MPT-30B | 15.2 | 3.1 |
49
+ | LLaMA-1-13B | 17.8 | 3.9 |
50
+ | GPT-Neo-2.7B | 19.5 | -- |
51
+ | Falcon-40B | 19.6 | 2.5 |
52
+ | Baichuan-chat-13B | 23.9 | -- |
53
+ | Vicuna-v1.3-13B | 27.6 | -- |
54
+ | LLaMA-2-13B | 28.7 | 3.9 |
55
+ | InternLM-7B | 31.2 | -- |
56
+ | ChatGLM-2-6B | 32.4 | -- |
57
+ | GPT-J-6B | 34.9 | -- |
58
+ | LLaMA-1-33B | 35.6 | 3.9 |
59
+ | LLaMA-2-34B | 42.2 | 6.24 |
60
+ | RFT-7B | 50.3 | -- |
61
+ | LLaMA-1-65B | 50.9 | 10.6 |
62
+ | Qwen-7B | 51.6 | -- |
63
+ | WizardMath-7B | 54.9 | 10.7 |
64
+ | LLaMA-2-70B | 56.8 | 13.5 |
65
+ | WizardMath-13B | 63.9 | 14.0 |
66
+ | MAmmoTH-7B (COT) | 50.5 | 10.4 |
67
+ | MAmmoTH-7B (POT+COT)| 53.6 | 31.5 |
68
+ | Arithmo-Mistral-7B | 74.7 | 25.3 |
69
+ | MetaMath-7B | 66.5 | 19.8 |
70
+ | MetaMath-13B | 72.3 | 22.4 |
71
+ | MetaMath-Mistral-7B | 77.7 | 28.2 |
72
+ | MetaMath-Llemma-7B | 69.2 | 30.0 |
73
+ | 🔥 **MetaMath-Mistral-Pro** | **78.4** | **30.3** |
74
+
75
+
76
+ ## Citation
77
+
78
+ ```bibtex
79
+ @article{wu2024llama,
80
+ title={Llama pro: Progressive llama with block expansion},
81
+ author={Wu, Chengyue and Gan, Yukang and Ge, Yixiao and Lu, Zeyu and Wang, Jiahao and Feng, Ye and Luo, Ping and Shan, Ying},
82
+ journal={arXiv preprint arXiv:2401.02415},
83
+ year={2024}
84
+ }
85
+ ```