hamishivi commited on
Commit
cca5e82
1 Parent(s): c6d66ec

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +120 -0
README.md ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ model-index:
3
+ - name: tulu-v1-llama2-13b
4
+ results: []
5
+ datasets:
6
+ - allenai/tulu-v1-sft-mixture
7
+ language:
8
+ - en
9
+ base_model: meta-llama/Llama-2-13b-hf
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 Tulu 1 llama2 13B
17
+
18
+ Tulu is a series of language models that are trained to act as helpful assistants.
19
+ Tulu 1 llama2 13B is a fine-tuned version of Llama 2 that was trained on a mix of publicly available, synthetic and human datasets.
20
+ Specifically, this model is trained on our v1 Tulu data mixture.
21
+ Check out our paper [TODO: link]() for more details!
22
+
23
+
24
+ ## Model description
25
+
26
+ - **Model type:** A model belonging to a suite of instruction and RLHF tuned chat models on a mix of publicly available, synthetic and human-created datasets.
27
+ - **Language(s) (NLP):** Primarily English
28
+ - **License:** [AI2 ImpACT](https://allenai.org/impact-license) Low-risk license.
29
+ - **Finetuned from model:** [meta-llama/Llama-2-13b-hf](https://huggingface.co/meta-llama/Llama-2-13b-hf)
30
+
31
+ ### Model Sources
32
+
33
+ - **Repository:** https://github.com/allenai/https://github.com/allenai/open-instruct
34
+ - **Model Family:** Other models and the dataset are found in the [Tulu V2 collection](https://huggingface.co/collections/allenai/tulu-v2-suite-6551b56e743e6349aab45101).
35
+
36
+
37
+ ## Intended uses & limitations
38
+
39
+ The model was fine-tuned on a filtered and preprocessed of the [Tulu V1 mix dataset](https://huggingface.co/datasets/allenai/tulu-v1-sft-mixture), which contains a diverse range of human created instructions and synthetic dialogues generated primarily by other LLMs.
40
+ <!--We then further aligned the model with a [Jax DPO trainer](https://github.com/hamishivi/EasyLM/blob/main/EasyLM/models/llama/llama_train_dpo.py) built on [EasyLM](https://github.com/young-geng/EasyLM) on the [openbmb/UltraFeedback](https://huggingface.co/datasets/openbmb/UltraFeedback) dataset, which contains 64k prompts and model completions that are ranked by GPT-4.
41
+
42
+
43
+ <!-- You can find the datasets used for training Tulu V2 [here]()
44
+
45
+ Here's how you can run the model using the `pipeline()` function from 🤗 Transformers:
46
+
47
+ ```python
48
+ # Install transformers from source - only needed for versions <= v4.34
49
+ # pip install git+https://github.com/huggingface/transformers.git
50
+ # pip install accelerate
51
+
52
+ import torch
53
+ from transformers import pipeline
54
+
55
+ pipe = pipeline("text-generation", model="HuggingFaceH4/tulu-2-dpo-70b", torch_dtype=torch.bfloat16, device_map="auto")
56
+
57
+ # We use the tokenizer's chat template to format each message - see https://huggingface.co/docs/transformers/main/en/chat_templating
58
+ messages = [
59
+ {
60
+ "role": "system",
61
+ "content": "You are a friendly chatbot who always responds in the style of a pirate",
62
+ },
63
+ {"role": "user", "content": "How many helicopters can a human eat in one sitting?"},
64
+ ]
65
+ prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
66
+ outputs = pipe(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
67
+ print(outputs[0]["generated_text"])
68
+ # <|system|>
69
+ # You are a friendly chatbot who always responds in the style of a pirate.</s>
70
+ # <|user|>
71
+ # How many helicopters can a human eat in one sitting?</s>
72
+ # <|assistant|>
73
+ # Ah, me hearty matey! But yer question be a puzzler! A human cannot eat a helicopter in one sitting, as helicopters are not edible. They be made of metal, plastic, and other materials, not food!
74
+ ```-->
75
+
76
+ ## Bias, Risks, and Limitations
77
+
78
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
79
+
80
+ 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).
81
+ It is also unknown what the size and composition of the corpus was used to train the base Llama 2 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.
82
+
83
+
84
+ ### Training hyperparameters
85
+
86
+ The following hyperparameters were used during DPO training:
87
+ - learning_rate: 2e-5
88
+ - total_train_batch_size: 128
89
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
90
+ - lr_scheduler_type: linear
91
+ - lr_scheduler_warmup_ratio: 0.03
92
+ - num_epochs: 2.0
93
+
94
+
95
+ ## Citation
96
+
97
+ If you use this model, please cite the original Tulu work:
98
+ ```
99
+ @inproceedings{wang2023far,
100
+ title={How Far Can Camels Go? Exploring the State of Instruction Tuning on Open Resources},
101
+ author={Yizhong Wang and Hamish Ivison and Pradeep Dasigi and Jack Hessel and Tushar Khot and Khyathi Chandu and David Wadden and Kelsey MacMillan and Noah A. Smith and Iz Beltagy and Hannaneh Hajishirzi},
102
+ booktitle={Thirty-seventh Conference on Neural Information Processing Systems Datasets and Benchmarks Track},
103
+ year={2023},
104
+ url={https://openreview.net/forum?id=w4zZNC4ZaV}
105
+ }
106
+ ```
107
+
108
+ If you find Tulu 2 is useful in your work, please cite it with:
109
+
110
+ ```
111
+ @misc{ivison2023changing,
112
+ title={Camels in a Changing Climate: Enhancing LM Adaptation with Tulu 2},
113
+ 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},
114
+ year={2023},
115
+ archivePrefix={arXiv},
116
+ primaryClass={cs.CL}
117
+ }
118
+ ```
119
+
120
+ *Model card adapted from [Zephyr Beta](https://huggingface.co/HuggingFaceH4/zephyr-7b-beta/blob/main/README.md)*