lievan commited on
Commit
18bb8c1
•
1 Parent(s): e01da96

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -0
README.md CHANGED
@@ -1,3 +1,63 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ datasets:
4
+ - openbmb/UltraInteract
5
+ - stingning/ultrachat
6
+ - openchat/openchat_sharegpt4_dataset
7
+ - Open-Orca/OpenOrca
8
+ tags:
9
+ - reasoning
10
+ pipeline_tag: text-generation
11
  ---
12
+
13
+
14
+ # Links
15
+
16
+ - 📜 [Paper]()
17
+ - 🤗 [Eurus Collection](https://huggingface.co/collections/openbmb/eurus-660bc40bec5376b3adc9d1c5)
18
+ - 🤗 [UltraInteract](https://huggingface.co/datasets/openbmb/UltraInteract)
19
+
20
+ # Introduction
21
+
22
+ Eurus-7B-SFT is fine-tuned from Mistral-7B on all correct actions in UltraInteract, mixing a small proportion of UltraChat, ShareGPT, and OpenOrca examples.
23
+
24
+ It achieves better performance than other open-source models of similar sizes, and even outperforms specialized models in corresponding domains in many cases.
25
+
26
+ ## Usage
27
+
28
+ We apply tailored prompts for coding and math, consistent with UltraInteract data formats:
29
+
30
+ **Coding**
31
+
32
+ ```
33
+ [INST] Write Python code to solve the task:
34
+ {Instruction} [/INST]
35
+ ```
36
+ **Math-CoT**
37
+
38
+ ```
39
+ [INST] Solve the following math problem step-by-step.
40
+ Simplify your answer as much as possible. Present your final answer as \\boxed{Your Answer}.
41
+ {Instruction} [/INST]
42
+ ```
43
+
44
+ **Math-PoT**
45
+
46
+ ```
47
+ [INST] Tool available:
48
+ [1] Python interpreter
49
+ When you send a message containing Python code to python, it will be executed in a stateful Jupyter notebook environment.
50
+ Solve the following math problem step-by-step.
51
+ Simplify your answer as much as possible.
52
+ {Instruction} [/INST]
53
+ ```
54
+
55
+ ## Citation
56
+ ```
57
+ @misc{yuan2024advancing,
58
+ title={Advancing LLM Reasoning Generalists with Preference Trees},
59
+ author={Lifan Yuan and Ganqu Cui and Hanbin Wang and Ning Ding and Xingyao Wang and Jia Deng and Boji Shan and Huimin Chen and Ruobing Xie and Yankai Lin and Zhenghao Liu and Bowen Zhou and Hao Peng and Zhiyuan Liu and Maosong Sun},
60
+ year={2024},
61
+ primaryClass={cs.CL}
62
+ }
63
+ ```