RichardErkhov commited on
Commit
91b5699
1 Parent(s): 173b6a8

uploaded readme

Browse files
Files changed (1) hide show
  1. README.md +176 -0
README.md ADDED
@@ -0,0 +1,176 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Quantization made by Richard Erkhov.
2
+
3
+ [Github](https://github.com/RichardErkhov)
4
+
5
+ [Discord](https://discord.gg/pvy7H8DZMG)
6
+
7
+ [Request more models](https://github.com/RichardErkhov/quant_request)
8
+
9
+
10
+ h2o-danube-1.8b-chat - bnb 4bits
11
+ - Model creator: https://huggingface.co/h2oai/
12
+ - Original model: https://huggingface.co/h2oai/h2o-danube-1.8b-chat/
13
+
14
+
15
+
16
+
17
+ Original model description:
18
+ ---
19
+ language:
20
+ - en
21
+ library_name: transformers
22
+ license: apache-2.0
23
+ tags:
24
+ - gpt
25
+ - llm
26
+ - large language model
27
+ - h2o-llmstudio
28
+ thumbnail: >-
29
+ https://h2o.ai/etc.clientlibs/h2o/clientlibs/clientlib-site/resources/images/favicon.ico
30
+ datasets:
31
+ - HuggingFaceH4/ultrafeedback_binarized
32
+ - Intel/orca_dpo_pairs
33
+ - argilla/distilabel-math-preference-dpo
34
+ - Open-Orca/OpenOrca
35
+ - OpenAssistant/oasst2
36
+ - HuggingFaceH4/ultrachat_200k
37
+ - meta-math/MetaMathQA
38
+ widget:
39
+ - messages:
40
+ - role: user
41
+ content: Why is drinking water so healthy?
42
+ pipeline_tag: text-generation
43
+ ---
44
+ # Model Card
45
+ ## Summary
46
+
47
+ h2o-danube-1.8b-chat is an chat fine-tuned model by H2O.ai with 1.8 billion parameters. For details, please refer to our [Technical Report](https://arxiv.org/abs/2401.16818). We release three versions of this model:
48
+
49
+ | Model Name | Description |
50
+ |:-----------------------------------------------------------------------------------|:----------------|
51
+ | [h2oai/h2o-danube-1.8b-base](https://huggingface.co/h2oai/h2o-danube-1.8b-base) | Base model |
52
+ | [h2oai/h2o-danube-1.8b-sft](https://huggingface.co/h2oai/h2o-danube-1.8b-sft) | SFT tuned |
53
+ | [h2oai/h2o-danube-1.8b-chat](https://huggingface.co/h2oai/h2o-danube-1.8b-chat) | SFT + DPO tuned |
54
+
55
+ This model was trained using [H2O LLM Studio](https://github.com/h2oai/h2o-llmstudio).
56
+
57
+ ## Model Architecture
58
+
59
+ We adjust the Llama 2 architecture for a total of around 1.8b parameters. We use the original Llama 2 tokenizer with a vocabulary size of 32,000 and train our model up to a context length of 16,384. We incorporate the sliding window attention from mistral with a size of 4,096.
60
+
61
+ The details of the model architecture are:
62
+
63
+ | Hyperparameter | Value |
64
+ |:----------------|:-------|
65
+ | n_layers | 24 |
66
+ | n_heads | 32 |
67
+ | n_query_groups | 8 |
68
+ | n_embd | 2560 |
69
+ | vocab size | 32000 |
70
+ | sequence length | 16384 |
71
+
72
+ ## Usage
73
+
74
+ To use the model with the `transformers` library on a machine with GPUs, first make sure you have the `transformers` library installed.
75
+
76
+ ```bash
77
+ pip install transformers==4.36.1
78
+ ```
79
+
80
+ ```python
81
+ import torch
82
+ from transformers import pipeline
83
+
84
+ pipe = pipeline(
85
+ "text-generation",
86
+ model="h2oai/h2o-danube-1.8b-chat",
87
+ torch_dtype=torch.bfloat16,
88
+ device_map="auto",
89
+ )
90
+
91
+ # We use the HF Tokenizer chat template to format each message
92
+ # https://huggingface.co/docs/transformers/main/en/chat_templating
93
+ messages = [
94
+ {"role": "user", "content": "Why is drinking water so healthy?"},
95
+ ]
96
+ prompt = pipe.tokenizer.apply_chat_template(
97
+ messages,
98
+ tokenize=False,
99
+ add_generation_prompt=True,
100
+ )
101
+ res = pipe(
102
+ prompt,
103
+ max_new_tokens=256,
104
+ )
105
+ print(res[0]["generated_text"])
106
+ # <|prompt|>Why is drinking water so healthy?</s><|answer|> Drinking water is healthy for several reasons: [...]
107
+ ```
108
+
109
+ ## Benchmarks
110
+
111
+ Commonsense, world-knowledge and reading comprehension tested in 0-shot:
112
+
113
+ | Benchmark | acc_n |
114
+ |:--------------|:--------:|
115
+ | ARC-easy | 67.51 |
116
+ | ARC-challenge | 39.25 |
117
+ | BoolQ | 77.89 |
118
+ | Hellaswag | 67.60 |
119
+ | OpenBookQA | 39.20 |
120
+ | PiQA | 76.71 |
121
+ | TriviaQA | 36.29 |
122
+ | Winogrande | 65.35 |
123
+
124
+ ## Quantization and sharding
125
+
126
+ You can load the models using quantization by specifying ```load_in_8bit=True``` or ```load_in_4bit=True```. Also, sharding on multiple GPUs is possible by setting ```device_map=auto```.
127
+
128
+ ## Model Architecture
129
+
130
+ ```
131
+ MistralForCausalLM(
132
+ (model): MistralModel(
133
+ (embed_tokens): Embedding(32000, 2560, padding_idx=0)
134
+ (layers): ModuleList(
135
+ (0-23): 24 x MistralDecoderLayer(
136
+ (self_attn): MistralAttention(
137
+ (q_proj): Linear(in_features=2560, out_features=2560, bias=False)
138
+ (k_proj): Linear(in_features=2560, out_features=640, bias=False)
139
+ (v_proj): Linear(in_features=2560, out_features=640, bias=False)
140
+ (o_proj): Linear(in_features=2560, out_features=2560, bias=False)
141
+ (rotary_emb): MistralRotaryEmbedding()
142
+ )
143
+ (mlp): MistralMLP(
144
+ (gate_proj): Linear(in_features=2560, out_features=6912, bias=False)
145
+ (up_proj): Linear(in_features=2560, out_features=6912, bias=False)
146
+ (down_proj): Linear(in_features=6912, out_features=2560, bias=False)
147
+ (act_fn): SiLU()
148
+ )
149
+ (input_layernorm): MistralRMSNorm()
150
+ (post_attention_layernorm): MistralRMSNorm()
151
+ )
152
+ )
153
+ (norm): MistralRMSNorm()
154
+ )
155
+ (lm_head): Linear(in_features=2560, out_features=32000, bias=False)
156
+ )
157
+ ```
158
+
159
+ ## Model Configuration
160
+
161
+ This model was trained using H2O LLM Studio and with the configuration in [cfg.yaml](cfg.yaml). Visit [H2O LLM Studio](https://github.com/h2oai/h2o-llmstudio) to learn how to train your own large language models.
162
+
163
+
164
+ ## Disclaimer
165
+
166
+ Please read this disclaimer carefully before using the large language model provided in this repository. Your use of the model signifies your agreement to the following terms and conditions.
167
+
168
+ - Biases and Offensiveness: The large language model is trained on a diverse range of internet text data, which may contain biased, racist, offensive, or otherwise inappropriate content. By using this model, you acknowledge and accept that the generated content may sometimes exhibit biases or produce content that is offensive or inappropriate. The developers of this repository do not endorse, support, or promote any such content or viewpoints.
169
+ - Limitations: The large language model is an AI-based tool and not a human. It may produce incorrect, nonsensical, or irrelevant responses. It is the user's responsibility to critically evaluate the generated content and use it at their discretion.
170
+ - Use at Your Own Risk: Users of this large language model must assume full responsibility for any consequences that may arise from their use of the tool. The developers and contributors of this repository shall not be held liable for any damages, losses, or harm resulting from the use or misuse of the provided model.
171
+ - Ethical Considerations: Users are encouraged to use the large language model responsibly and ethically. By using this model, you agree not to use it for purposes that promote hate speech, discrimination, harassment, or any form of illegal or harmful activities.
172
+ - Reporting Issues: If you encounter any biased, offensive, or otherwise inappropriate content generated by the large language model, please report it to the repository maintainers through the provided channels. Your feedback will help improve the model and mitigate potential issues.
173
+ - Changes to this Disclaimer: The developers of this repository reserve the right to modify or update this disclaimer at any time without prior notice. It is the user's responsibility to periodically review the disclaimer to stay informed about any changes.
174
+
175
+ By using the large language model provided in this repository, you agree to accept and comply with the terms and conditions outlined in this disclaimer. If you do not agree with any part of this disclaimer, you should refrain from using the model and any content generated by it.
176
+