Update README.md
Browse files
README.md
CHANGED
@@ -1,5 +1,64 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
-
|
4 |
-
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
tags:
|
4 |
+
- merge
|
5 |
+
- mergekit
|
6 |
+
- lazymergekit
|
7 |
+
- samir-fama/SamirGPT-v1
|
8 |
+
- abacusai/Slerp-CM-mist-dpo
|
9 |
+
- EmbeddedLLM/Mistral-7B-Merge-14-v0.2
|
10 |
+
- dpo
|
11 |
+
- rlhf
|
12 |
+
---
|
13 |
+
|
14 |
+
# NeuralDaredevil-7B
|
15 |
+
|
16 |
+
NeuralDaredevil-7B is a DPO fine-tune of [mlabonne/Daredevil-7B](https://huggingface.co/mlabonne/Daredevil-7B) using [argilla/distilabel-intel-orca-dpo-pairs](https://huggingface.co/datasets/argilla/distilabel-intel-orca-dpo-pairs).
|
17 |
+
|
18 |
+
Thanks [Argilla](https://huggingface.co/argilla) for providing the dataset and the training recipe [here](https://huggingface.co/argilla/distilabeled-Marcoro14-7B-slerp). πͺ
|
19 |
+
|
20 |
+
## π Evaluation
|
21 |
+
|
22 |
+
The evaluation was performed using [LLM AutoEval](https://github.com/mlabonne/llm-autoeval) on Nous suite.
|
23 |
+
|
24 |
+
| Model | Average | AGIEval | GPT4All | TruthfulQA | Bigbench |
|
25 |
+
|---|---:|---:|---:|---:|---:|
|
26 |
+
| [**mlabonne/NeuralDaredevil-7B**](https://huggingface.co/mlabonne/NeuralDaredevil-7B) [π](https://gist.github.com/mlabonne/cbeb077d1df71cb81c78f742f19f4155) | **59.39** | **45.23** | **76.2** | **67.61** | **48.52** |
|
27 |
+
| [mlabonne/Beagle14-7B](https://huggingface.co/mlabonne/Beagle14-7B) [π](https://gist.github.com/mlabonne/f5a5bf8c0827bbec2f05b97cc62d642c) | 59.4 | 44.38 | 76.53 | 69.44 | 47.25 |
|
28 |
+
| [argilla/distilabeled-Marcoro14-7B-slerp](https://huggingface.co/argilla/distilabeled-Marcoro14-7B-slerp) [π](https://gist.github.com/mlabonne/9082c4e59f4d3f3543c5eda3f4807040) | 58.93 | 45.38 | 76.48 | 65.68 | 48.18 |
|
29 |
+
| [mlabonne/NeuralMarcoro14-7B](https://huggingface.co/mlabonne/NeuralMarcoro14-7B) [π](https://gist.github.com/mlabonne/b31572a4711c945a4827e7242cfc4b9d) | 58.4 | 44.59 | 76.17 | 65.94 | 46.9 |
|
30 |
+
| [openchat/openchat-3.5-0106](https://huggingface.co/openchat/openchat-3.5-0106) [π](https://gist.github.com/mlabonne/1afab87b543b0717ec08722cf086dcc3) | 53.71 | 44.17 | 73.72 | 52.53 | 44.4 |
|
31 |
+
| [teknium/OpenHermes-2.5-Mistral-7B](https://huggingface.co/teknium/OpenHermes-2.5-Mistral-7B) [π](https://gist.github.com/mlabonne/88b21dd9698ffed75d6163ebdc2f6cc8) | 52.42 | 42.75 | 72.99 | 52.99 | 40.94 |
|
32 |
+
|
33 |
+
You can find the complete benchmark on [YALL - Yet Another LLM Leaderboard](https://huggingface.co/spaces/mlabonne/Yet_Another_LLM_Leaderboard).
|
34 |
+
|
35 |
+
## π» Usage
|
36 |
+
|
37 |
+
```python
|
38 |
+
!pip install -qU transformers accelerate
|
39 |
+
|
40 |
+
from transformers import AutoTokenizer
|
41 |
+
import transformers
|
42 |
+
import torch
|
43 |
+
|
44 |
+
model = "mlabonne/NeuralDaredevil-7B"
|
45 |
+
messages = [{"role": "user", "content": "What is a large language model?"}]
|
46 |
+
|
47 |
+
tokenizer = AutoTokenizer.from_pretrained(model)
|
48 |
+
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
49 |
+
pipeline = transformers.pipeline(
|
50 |
+
"text-generation",
|
51 |
+
model=model,
|
52 |
+
torch_dtype=torch.float16,
|
53 |
+
device_map="auto",
|
54 |
+
)
|
55 |
+
|
56 |
+
outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
|
57 |
+
print(outputs[0]["generated_text"])
|
58 |
+
```
|
59 |
+
|
60 |
+
<p align="center">
|
61 |
+
<a href="https://github.com/argilla-io/distilabel">
|
62 |
+
<img src="https://raw.githubusercontent.com/argilla-io/distilabel/main/docs/assets/distilabel-badge-light.png" alt="Built with Distilabel" width="200" height="32"/>
|
63 |
+
</a>
|
64 |
+
</p>
|