hamishivi commited on
Commit
2bdbd01
1 Parent(s): c56809a

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +100 -0
README.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ model-index:
3
+ - name: llama-3-tulu-2-8b
4
+ results: []
5
+ datasets:
6
+ - allenai/tulu-v2-sft-mixture
7
+ language:
8
+ - en
9
+ base_model: meta-llama/Meta-Llama-3-8B
10
+ ---
11
+
12
+
13
+ <img src="https://huggingface.co/datasets/allenai/blog-images/resolve/main/tulu-v2/Tulu%20V2%20banner.png" alt="TuluV2 banner" width="800" style="margin-left:'auto' margin-right:'auto' display:'block'"/>
14
+
15
+
16
+ # Model Card for Llama 3 Tulu V2 8B
17
+
18
+ Tulu is a series of language models that are trained to act as helpful assistants.
19
+ Llama 3 Tulu V2 8B is a fine-tuned version of Llama 3 that was trained on a mix of publicly available, synthetic and human datasets.
20
+
21
+ For more details on the training mixture, read the paper: [Camels in a Changing Climate: Enhancing LM Adaptation with Tulu 2
22
+ ](https://arxiv.org/abs/2311.10702).
23
+
24
+
25
+ ## Model description
26
+
27
+ - **Model type:** A model trained on a mix of publicly available, synthetic and human-created datasets.
28
+ - **Language(s) (NLP):** Primarily English
29
+ - **License:** Apache 2.0
30
+ - **Finetuned from model:** [meta-llama/Meta-Llama-3-8B](https://huggingface.co/meta-llama/Meta-Llama-3-8B)
31
+
32
+ ### Model Sources
33
+
34
+ - **Repository:** https://github.com/allenai/open-instruct
35
+ - **Model Family:** Other models and the dataset are found in the [Tulu V2 collection](https://huggingface.co/collections/allenai/tulu-v2-suite-6551b56e743e6349aab45101).
36
+
37
+ ## Performance
38
+
39
+ | Model | MMLU 5-shot | GSM8k 8-shot cot | BBH 3-shot cot | TydiQA 1-shot Gold Passage | Codex HumanEval Pass@10 |AlpacaEval 1 | AlpacaEval 2 LC | TruthfulQA %Info+True | IFEval loose acc | XSTest safe but ref. | XSTest unsafe but follow | Average |
40
+ |-|-|-|-|-|-|-|-|-|-|-|-|-|
41
+ | Llama 3 8b base | 0.649 | 0.565 | 0.653 | 66.80 | 0.664 | - | - | 0.299 | 0.146 | 0.200 | 0.390 | 54.36 |
42
+ | Llama 3 8b instruct | 0.626 | 0.770 | 0.606 | 59.04 | 0.799 | 94.65 | 23.12 | 0.682 | 0.741 | 0.028 | 0.115 | 70.36 |
43
+ | Llama 3 Tulu 2 8b | 0.606 | 0.610 | 0.592 | 56.24 | 0.685 | 79.40 | 10.16 | 0.503 | 0.468 | 0.092 | 0.165 | 59.39 |
44
+ | Llama 3 Tulu 2+DPO 8b | 0.609 | 0.650 | 0.584 | 21.18 | 0.688 | 93.02 | 13.94 | 0.698 | 0.518 | 0.092 | 0.165 | 59.61 |
45
+ | Llama 3 70b base | 0.790 | 0.840 | 0.801 | 73.35 | 0.745 | - | - | 0.469 | 0.163 | 0.256 | 0.330 | 65.60 |
46
+ | Llama 3 70b instruct | 0.786 | 0.930 | 0.801 | 59.21 | 0.908 | 96.71 | 39.99 | 0.701 | 0.828 | 0.060 | 0.140 | 79.22 |
47
+ | Llama 3 Tulu 2 70b | 0.752 | 0.845 | 0.779 | 69.798 | 0.861 | 86.007 | 17.51 | 0.646 | 0.591 | 0.108 | 0.130 | 73.01 |
48
+ | Llama 3 Tulu 2+DPO 70b | 0.754 | 0.860 | 0.785 | 23.443 | 0.878 | 96.65 | 27.34 | 0.780 | 0.643 | 0.080 | 0.140 | 71.60 |
49
+
50
+ ## Input Format
51
+
52
+ The model is trained to use the following format (note the newlines):
53
+ ```
54
+ <|user|>
55
+ Your message here!
56
+ <|assistant|>
57
+ ```
58
+
59
+ For best results, format all inputs in this manner. **Make sure to include a newline after `<|assistant|>`, this can affect generation quality quite a bit.**
60
+
61
+
62
+ ## Intended uses & limitations
63
+
64
+ The model was initially fine-tuned on the [Tulu V2 mix dataset](https://huggingface.co/datasets/allenai/tulu-v2-sft-mixture), which contains a diverse range of human created instructions and synthetic dialogues generated primarily by other LLMs.
65
+
66
+
67
+ ## Bias, Risks, and Limitations
68
+
69
+
70
+ The Tulu models have not been aligned to generate safe completions within the RLHF phase or deployed with in-the-loop filtering of responses like ChatGPT, so the model can produce problematic outputs (especially when prompted to do so).
71
+ It is also unknown what the size and composition of the corpus was used to train the base Llama 3 models, however it is likely to have included a mix of Web data and technical sources like books and code. See the [Falcon 180B model card](https://huggingface.co/tiiuae/falcon-180B#training-data) for an example of this.
72
+
73
+
74
+ ### Training hyperparameters
75
+
76
+ The following hyperparameters were used during training:
77
+ - learning_rate: 2e-05
78
+ - total_train_batch_size: 128
79
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
80
+ - lr_scheduler_type: linear
81
+ - lr_scheduler_warmup_ratio: 0.03
82
+ - num_epochs: 2.0
83
+
84
+
85
+ ## Citation
86
+
87
+ If you find Tulu 2 is useful in your work, please cite it with:
88
+
89
+ ```
90
+ @misc{ivison2023camels,
91
+ title={Camels in a Changing Climate: Enhancing LM Adaptation with Tulu 2},
92
+ author={Hamish Ivison and Yizhong Wang and Valentina Pyatkin and Nathan Lambert and Matthew Peters and Pradeep Dasigi and Joel Jang and David Wadden and Noah A. Smith and Iz Beltagy and Hannaneh Hajishirzi},
93
+ year={2023},
94
+ eprint={2311.10702},
95
+ archivePrefix={arXiv},
96
+ primaryClass={cs.CL}
97
+ }
98
+ ```
99
+
100
+ *Model card adapted from [Zephyr Beta](https://huggingface.co/HuggingFaceH4/zephyr-7b-beta/blob/main/README.md)*