lievan commited on
Commit
0d47df5
·
verified ·
1 Parent(s): 8a0e8bc

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
+ - openbmb/UltraFeedback
6
+ tags:
7
+ - reasoning
8
+ - preference_learning
9
+ - kto
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-KTO is KTO fine-tuned from Eurus-7B-SFT on all multi-turn trajectory pairs in UltraInteract and all pairs in UltraFeedback.
23
+
24
+ It achieves the best overall performance among open-source models of similar sizes and even outperforms specialized models in corresponding domains in many cases. Notably, EURUS-7B-KTO outperforms baselines that are 5× larger.
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
+ ```