lievan commited on
Commit
8a45421
•
1 Parent(s): f30d05b

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
+ - nca
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-70B-NCA is NCA fine-tuned from Eurus-70B-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-70B-NCA achieves better performance than GPT-3.5 Turbo through a comprehensive benchmarking across 12 tests covering five tasks.
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
+ ```