colin-abacus commited on
Commit
d136d4b
1 Parent(s): 8dbd998

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -4
README.md CHANGED
@@ -10,9 +10,19 @@ base_model: jondurbin/bagel-34b-v0.2
10
 
11
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/64c14f6b02e1f8f67c73bd05/e4u8VYfDBh11u60rFYJHF.png)
12
 
13
- This model is a finetune of jondurbin's excellent [bagel](https://huggingface.co/jondurbin/bagel-34b-v0.2) model.
14
- It has been trained with new datasets and a new technique, which we will share to the community soon.
15
- This model has not utilised any form of merging.
 
 
 
 
 
 
 
 
 
 
16
 
17
  ### Evaluation Results
18
 
@@ -26,4 +36,17 @@ With reference model jondurbin/bagel-34b-v0.2:
26
 
27
  | ARC | TruthfulQA | GSM8K |
28
  | --- | --- | --- |
29
- | 0.08| 0.38| 0.88|
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
 
11
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/64c14f6b02e1f8f67c73bd05/e4u8VYfDBh11u60rFYJHF.png)
12
 
13
+ This model is a finetune of jondurbin's excellent [bagel](https://huggingface.co/jondurbin/bagel-34b-v0.2) model. This model has not utilised any form of merging.
14
+
15
+ We created Smaug-34B-v0.1 using a new fine-tuning technique, DPO-Positive (DPOP), and new pairwise preference versions of ARC, HellaSwag, and MetaMath (as well as other existing datasets).
16
+ We introduce the technique and the full training details in our new paper: https://arxiv.org/abs/2402.13228.
17
+
18
+ We show that on datasets in which the edit distance between pairs of completions is low (such as in math-based datasets), standard DPO loss can lead to a reduction of the model's
19
+ likelihood of the preferred examples, as long as the relative probability between the preferred and dispreferred classes increases.
20
+ Using these insights, we design DPOP, a new loss function and training procedure which avoids this failure mode.
21
+ Surprisingly, we also find that DPOP outperforms DPO across a wide variety of datasets and downstream tasks, including datasets with high edit distances between completions.
22
+
23
+ We believe this new approach is generally useful in training across a wide range of model types and downstream use cases, and it powers all of our Smaug models.
24
+ With the release of our paper and datasets, we are excited for the open source community to continue to build on and improve Smaug and spawn more dragons to dominate the LLM space!
25
+
26
 
27
  ### Evaluation Results
28
 
 
36
 
37
  | ARC | TruthfulQA | GSM8K |
38
  | --- | --- | --- |
39
+ | 0.08| 0.38| 0.88|
40
+
41
+ ### Citation
42
+
43
+ Please cite the paper if you use data, model, or method in this repo.
44
+
45
+ ```
46
+ @article{luo2023wizardcoder,
47
+ title={Smaug: Fixing Failure Modes of Preference Optimisation with DPO-Positive},
48
+ author={Pal, Arka and Karkhanis, Deep and Dooley, Samuel and Roberts, Manley and Naidu, Siddartha and White, Colin},
49
+ journal={arXiv preprint arXiv:2402.13228},
50
+ year={2024}
51
+ }
52
+ ```