Text Generation
Transformers
Safetensors
mixtral
reasoning
preference_learning
nca
conversational
text-generation-inference
Inference Endpoints
ganqu commited on
Commit
ece09fa
•
1 Parent(s): 50a38dc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md CHANGED
@@ -1,3 +1,89 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ datasets:
4
+ - openbmb/UltraInteract_sft
5
+ - openbmb/UltraInteract_pair
6
+ - openbmb/UltraFeedback
7
+ tags:
8
+ - reasoning
9
+ - preference_learning
10
+ - nca
11
+ pipeline_tag: text-generation
12
  ---
13
+
14
+ <div align="center">
15
+
16
+ <img src="https://huggingface.co/openbmb/Eurus-7b-sft/resolve/main/figures/Eurus-logo.png" width="200px">
17
+
18
+ **Eurus: A suite of open-source LLMs optimized for reasoning**
19
+
20
+ <p align="center">
21
+ <a href="#introduction"> Introduction</a> •
22
+ <a href="#evaluation">Evaluation</a>
23
+ </p>
24
+
25
+
26
+ </div>
27
+
28
+ # Links
29
+
30
+ - 📜 [Paper](https://arxiv.org/abs/2404.02078)
31
+ - 🤗 [Eurus Collection](https://huggingface.co/collections/openbmb/eurus-660bc40bec5376b3adc9d1c5)
32
+ - 🤗 UltraInteract
33
+ - [SFT](https://huggingface.co/datasets/openbmb/UltraInteract_sft)
34
+ - [Preference Learning](https://huggingface.co/datasets/openbmb/UltraInteract_pair)
35
+ - [GitHub Repo](https://github.com/OpenBMB/Eurus)
36
+
37
+ # Introduction
38
+
39
+ Eurux-8x22B-NCA is SFT and [NCA](https://arxiv.org/abs/2402.05369) fine-tuned from [Mixtral-8x22B](https://huggingface.co/mistral-community/Mixtral-8x22B-v0.1) on all multi-turn trajectory pairs in [UltraInteract](https://huggingface.co/openbmb/UltraInteract) and all pairs in [UltraFeedback](https://huggingface.co/openbmb/UltraFeedback).
40
+
41
+ It achieves superb reasoning performance as well as exellent chat & instruction-following capabilities.
42
+
43
+ ## Evaluation
44
+ We conducted overall coding, math, reasoning, knowledge, instruction-following and chat benchmarking. Results are shown below:
45
+
46
+ <img src="./figures/main_exp.png" alt="stats" style="zoom: 40%;" />
47
+
48
+
49
+ ## Usage
50
+
51
+ We apply tailored prompts for coding and math, consistent with UltraInteract data formats:
52
+
53
+ **Coding**
54
+
55
+ ```
56
+ [INST] Write Python code to solve the task:
57
+ {Instruction} [/INST]
58
+ ```
59
+ **Math-CoT**
60
+
61
+ ```
62
+ [INST] Solve the following math problem step-by-step.
63
+ Simplify your answer as much as possible. Present your final answer as \\boxed{Your Answer}.
64
+ {Instruction} [/INST]
65
+ ```
66
+
67
+ **Math-PoT**
68
+
69
+ ```
70
+ [INST] Tool available:
71
+ [1] Python interpreter
72
+ When you send a message containing Python code to python, it will be executed in a stateful Jupyter notebook environment.
73
+ Solve the following math problem step-by-step.
74
+ Simplify your answer as much as possible.
75
+ {Instruction} [/INST]
76
+ ```
77
+
78
+
79
+ ## Citation
80
+ ```
81
+ @misc{yuan2024advancing,
82
+ title={Advancing LLM Reasoning Generalists with Preference Trees},
83
+ 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},
84
+ year={2024},
85
+ eprint={2404.02078},
86
+ archivePrefix={arXiv},
87
+ primaryClass={cs.AI}
88
+ }
89
+ ```