BoscoTheDog commited on
Commit
225c6d2
1 Parent(s): d7e0804

Upload 19 files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,14 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ h2o-danube3-500m-chat.fp16.gguf filter=lfs diff=lfs merge=lfs -text
37
+ h2o-danube3-500m-chat.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
38
+ h2o-danube3-500m-chat.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
39
+ h2o-danube3-500m-chat.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
40
+ h2o-danube3-500m-chat.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
41
+ h2o-danube3-500m-chat.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
42
+ h2o-danube3-500m-chat.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
43
+ h2o-danube3-500m-chat.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
44
+ h2o-danube3-500m-chat.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
45
+ h2o-danube3-500m-chat.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
46
+ h2o-danube3-500m-chat.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ library_name: transformers
5
+ license: apache-2.0
6
+ tags:
7
+ - gpt
8
+ - llm
9
+ - large language model
10
+ - h2o-llmstudio
11
+ thumbnail: >-
12
+ https://h2o.ai/etc.clientlibs/h2o/clientlibs/clientlib-site/resources/images/favicon.ico
13
+ pipeline_tag: text-generation
14
+ ---
15
+
16
+
17
+
18
+ <div style="width: 90%; max-width: 600px; margin: 0 auto; overflow: hidden; background-color: white">
19
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/636d18755aaed143cd6698ef/LAzQu_f5WOX7vqKl4yDsY.png"
20
+ alt="Slightly cropped image"
21
+ style="width: 102%; height: 102%; object-fit: cover; object-position: center; margin: -5% -5% -5% -5%;">
22
+ </div>
23
+
24
+ ## Summary
25
+
26
+
27
+ h2o-danube3-500m-chat is a chat fine-tuned model by H2O.ai with 500 million parameters. We release two versions of this model:
28
+
29
+ | Model Name | Description |
30
+ |:-----------------------------------------------------------------------------------|:----------------|
31
+ | [h2oai/h2o-danube3-500m-base](https://huggingface.co/h2oai/h2o-danube3-500m-base) | Base model |
32
+ | [h2oai/h2o-danube3-500m-chat](https://huggingface.co/h2oai/h2o-danube3-500m-chat) | Chat model |
33
+
34
+ This model was trained using [H2O LLM Studio](https://github.com/h2oai/h2o-llmstudio).
35
+
36
+ Can be run natively and fully offline on phones - try it yourself with [H2O AI Personal GPT](https://h2o.ai/platform/danube/personal-gpt/).
37
+
38
+ ## Model Architecture
39
+
40
+ We adjust the Llama 2 architecture for a total of around 500m parameters. For details, please refer to our [Technical Report](https://arxiv.org/abs/2407.09276). We use the Mistral tokenizer with a vocabulary size of 32,000 and train our model up to a context length of 8,192.
41
+
42
+ The details of the model architecture are:
43
+
44
+ | Hyperparameter | Value |
45
+ |:----------------|:-------|
46
+ | n_layers | 16 |
47
+ | n_heads | 16 |
48
+ | n_query_groups | 8 |
49
+ | n_embd | 1536 |
50
+ | vocab size | 32000 |
51
+ | sequence length | 8192 |
52
+
53
+ ## Usage
54
+
55
+ To use the model with the `transformers` library on a machine with GPUs, first make sure you have the `transformers` library installed.
56
+
57
+ ```bash
58
+ pip install transformers>=4.42.3
59
+ ```
60
+
61
+ ```python
62
+ import torch
63
+ from transformers import pipeline
64
+
65
+ pipe = pipeline(
66
+ "text-generation",
67
+ model="h2oai/h2o-danube3-500m-chat",
68
+ torch_dtype=torch.bfloat16,
69
+ device_map="auto",
70
+ )
71
+
72
+ # We use the HF Tokenizer chat template to format each message
73
+ # https://huggingface.co/docs/transformers/main/en/chat_templating
74
+ messages = [
75
+ {"role": "user", "content": "Why is drinking water so healthy?"},
76
+ ]
77
+ prompt = pipe.tokenizer.apply_chat_template(
78
+ messages,
79
+ tokenize=False,
80
+ add_generation_prompt=True,
81
+ )
82
+ res = pipe(
83
+ prompt,
84
+ return_full_text=False,
85
+ max_new_tokens=256,
86
+ )
87
+ print(res[0]["generated_text"])
88
+ ```
89
+
90
+ This will apply and run the correct prompt format out of the box:
91
+
92
+ ```
93
+ <|prompt|>Why is drinking water so healthy?</s><|answer|>
94
+ ```
95
+
96
+ Alternatively, one can also run it via:
97
+
98
+ ```python
99
+ import torch
100
+ from transformers import AutoModelForCausalLM, AutoTokenizer
101
+
102
+ model_name = "h2oai/h2o-danube3-500m-chat"
103
+
104
+ tokenizer = AutoTokenizer.from_pretrained(
105
+ model_name,
106
+ )
107
+ model = AutoModelForCausalLM.from_pretrained(
108
+ model_name,
109
+ torch_dtype=torch.bfloat16,
110
+ device_map="auto",
111
+ trust_remote_code=True,
112
+ )
113
+
114
+ messages = [
115
+ {"role": "user", "content": "Why is drinking water so healthy?"},
116
+ ]
117
+ prompt = tokenizer.apply_chat_template(
118
+ messages,
119
+ tokenize=False,
120
+ add_generation_prompt=True,
121
+ )
122
+ inputs = tokenizer(
123
+ prompt, return_tensors="pt", add_special_tokens=False
124
+ ).to("cuda")
125
+
126
+ # generate configuration can be modified to your needs
127
+ tokens = model.generate(
128
+ input_ids=inputs["input_ids"],
129
+ attention_mask=inputs["attention_mask"],
130
+ min_new_tokens=2,
131
+ max_new_tokens=256,
132
+ )[0]
133
+
134
+ tokens = tokens[inputs["input_ids"].shape[1]:]
135
+ answer = tokenizer.decode(tokens, skip_special_tokens=True)
136
+ print(answer)
137
+ ```
138
+
139
+ ## Quantization and sharding
140
+
141
+ 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```.
142
+
143
+ ## Model Architecture
144
+
145
+ ```
146
+ LlamaForCausalLM(
147
+ (model): LlamaModel(
148
+ (embed_tokens): Embedding(32000, 1536, padding_idx=0)
149
+ (layers): ModuleList(
150
+ (0-15): 16 x LlamaDecoderLayer(
151
+ (self_attn): LlamaSdpaAttention(
152
+ (q_proj): Linear(in_features=1536, out_features=1536, bias=False)
153
+ (k_proj): Linear(in_features=1536, out_features=768, bias=False)
154
+ (v_proj): Linear(in_features=1536, out_features=768, bias=False)
155
+ (o_proj): Linear(in_features=1536, out_features=1536, bias=False)
156
+ (rotary_emb): LlamaRotaryEmbedding()
157
+ )
158
+ (mlp): LlamaMLP(
159
+ (gate_proj): Linear(in_features=1536, out_features=4096, bias=False)
160
+ (up_proj): Linear(in_features=1536, out_features=4096, bias=False)
161
+ (down_proj): Linear(in_features=4096, out_features=1536, bias=False)
162
+ (act_fn): SiLU()
163
+ )
164
+ (input_layernorm): LlamaRMSNorm()
165
+ (post_attention_layernorm): LlamaRMSNorm()
166
+ )
167
+ )
168
+ (norm): LlamaRMSNorm()
169
+ )
170
+ (lm_head): Linear(in_features=1536, out_features=32000, bias=False)
171
+ )
172
+ ```
173
+
174
+ ## Benchmarks
175
+
176
+ ### 🤗 Open LLM Leaderboard v1
177
+
178
+ | Benchmark | acc_n |
179
+ |:--------------|:--------:|
180
+ | Average | 40.71 |
181
+ | ARC-challenge | 39.25 |
182
+ | Hellaswag | 61.02 |
183
+ | MMLU | 26.33 |
184
+ | TruthfulQA | 39.96 |
185
+ | Winogrande | 61.72 |
186
+ | GSM8K | 16.00 |
187
+
188
+ ### MT-Bench
189
+
190
+ ```
191
+ First Turn: 4.16
192
+ Second Turn: 2.40
193
+ Average: 3.28
194
+ ```
195
+
196
+ ## Disclaimer
197
+
198
+ 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.
199
+
200
+ - 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.
201
+ - 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.
202
+ - 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.
203
+ - 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.
204
+ - 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.
205
+ - 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.
206
+
207
+ 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.
config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "h2oai/h2o-danube3-500m-chat",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
5
+ ],
6
+ "attention_bias": false,
7
+ "attention_dropout": 0.0,
8
+ "bos_token_id": 1,
9
+ "eos_token_id": 2,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 1536,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 4096,
14
+ "max_position_embeddings": 8192,
15
+ "model_type": "llama",
16
+ "num_attention_heads": 16,
17
+ "num_hidden_layers": 16,
18
+ "num_key_value_heads": 8,
19
+ "pad_token_id": 0,
20
+ "rms_norm_eps": 1e-05,
21
+ "rope_theta": 100000,
22
+ "sliding_window": null,
23
+ "tie_word_embeddings": false,
24
+ "torch_dtype": "bfloat16",
25
+ "transformers_version": "4.42.3",
26
+ "use_cache": true,
27
+ "vocab_size": 32000
28
+ }
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": 2,
5
+ "pad_token_id": 0,
6
+ "transformers_version": "4.42.3"
7
+ }
h2o-danube3-500m-chat.Q2_K.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19c2237166a25e3e16486300c9f58271bf26881bc957f2dfd0f68d037ace931c
3
+ size 209601760
h2o-danube3-500m-chat.Q3_K_L.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f1c06800e7f88a6c242fa9bf4a1190fc4d20d9520acc9737aa1535217115147
3
+ size 281342176
h2o-danube3-500m-chat.Q3_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:370a8607e38cc0a1d4ecc01e7df92f0ccf79d6dd4ab735276a964b8a6c5f5d88
3
+ size 262762720
h2o-danube3-500m-chat.Q3_K_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f5890eb43b9bb422a874e50a002788f9f7fb7293c4eab24daa0f0f9ca07b6f1
3
+ size 240791776
h2o-danube3-500m-chat.Q4_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d1de695e5c82c0afdb98d0e2471391a39b08098ed952ec42217d4f926d3504c
3
+ size 317877472
h2o-danube3-500m-chat.Q4_K_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bd3f41ffa276211cfc64fe5e82603a71447e89148b0891248660ecfabfeb6be
3
+ size 304631008
h2o-danube3-500m-chat.Q5_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ebecdf71f560c8b318da052caa6dc232ddf16707a51d9c852a1beeaf55a79f1
3
+ size 368454880
h2o-danube3-500m-chat.Q5_K_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f598371a75b21c982ee82d89961aa996540168e1bffe0d42df32f6eb293b0e06
3
+ size 360516832
h2o-danube3-500m-chat.Q6_K.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c85d619e85aad9253ce391d81cc92d42e1cafc2c103a7bc9d3233699ead2c7f
3
+ size 422193376
h2o-danube3-500m-chat.Q8_0.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df3af80e73b021b30488fad5cff21dba16a0f3a35ec8f4332742a6099379d263
3
+ size 546566368
h2o-danube3-500m-chat.fp16.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6bfbe2ccc690dcb4c8db8c295222ce264998aa100b8eb873eb74f615e784500d
3
+ size 1028010208
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be646aaf13c312e5d1c5a82451f61cd99133d82d914764db0a316a76e5a55e26
3
+ size 1027198256
special_tokens_map.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "cls_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "eos_token": {
17
+ "content": "</s>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "pad_token": {
24
+ "content": "<unk>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "sep_token": {
31
+ "content": "</s>",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ },
37
+ "unk_token": {
38
+ "content": "<unk>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false
43
+ }
44
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
3
+ size 493443
tokenizer_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": false,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
30
+ },
31
+ "additional_special_tokens": [],
32
+ "bos_token": "<s>",
33
+ "chat_template": "{% for message in messages %}{% if message['role'] == 'system' %}{{ raise_exception('System role not supported') }}{% endif %}{% if ((message['role'] == 'user') != (loop.index0 % 2 == 0)) or ((message['role'] == 'assistant') != (loop.index0 % 2 == 1)) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '<|prompt|>' + message['content'].strip() + eos_token }}{% elif message['role'] == 'assistant' %}{{ '<|answer|>' + message['content'].strip() + eos_token }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '<|answer|>' }}{% endif %}",
34
+ "clean_up_tokenization_spaces": false,
35
+ "cls_token": "</s>",
36
+ "eos_token": "</s>",
37
+ "legacy": true,
38
+ "model_max_length": 1000000000000000019884624838656,
39
+ "pad_token": "<unk>",
40
+ "sep_token": "</s>",
41
+ "sp_model_kwargs": {},
42
+ "spaces_between_special_tokens": false,
43
+ "tokenizer_class": "LlamaTokenizer",
44
+ "unk_token": "<unk>",
45
+ "use_default_system_prompt": false
46
+ }