RichardErkhov commited on
Commit
3035459
1 Parent(s): 797b71c

uploaded readme

Browse files
Files changed (1) hide show
  1. README.md +111 -0
README.md ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-danube2-1.8b-base - bnb 4bits
11
+ - Model creator: https://huggingface.co/h2oai/
12
+ - Original model: https://huggingface.co/h2oai/h2o-danube2-1.8b-base/
13
+
14
+
15
+
16
+
17
+ Original model description:
18
+ ---
19
+ language:
20
+ - en
21
+ license: apache-2.0
22
+ library_name: transformers
23
+ tags:
24
+ - gpt
25
+ - llm
26
+ - large language model
27
+ ---
28
+
29
+ ## Summary
30
+
31
+ h2o-danube2-1.8b-base is a foundation model trained 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:
32
+
33
+
34
+ | Model Name | Description |
35
+ |:-----------------------------------------------------------------------------------|:----------------|
36
+ | [h2oai/h2o-danube2-1.8b-base](https://huggingface.co/h2oai/h2o-danube2-1.8b-base) | Base model |
37
+ | [h2oai/h2o-danube2-1.8b-sft](https://huggingface.co/h2oai/h2o-danube2-1.8b-sft) | SFT tuned |
38
+ | [h2oai/h2o-danube2-1.8b-chat](https://huggingface.co/h2oai/h2o-danube2-1.8b-chat) | SFT + DPO tuned |
39
+
40
+
41
+ ## Model Architecture
42
+
43
+ We adjust the Llama 2 architecture for a total of around 1.8b parameters. We use the Mistral tokenizer with a vocabulary size of 32,000 and train our model up to a context length of 8,192.
44
+
45
+ The details of the model architecture are:
46
+
47
+ | Hyperparameter | Value |
48
+ |:----------------|:-------|
49
+ | n_layers | 24 |
50
+ | n_heads | 32 |
51
+ | n_query_groups | 8 |
52
+ | n_embd | 2560 |
53
+ | vocab size | 32000 |
54
+ | sequence length | 8192 |
55
+
56
+ ## Usage
57
+
58
+ This is a pre-trained foundation model. For your task, you will likely want to perform application specific fine-tuning. We also offer a chat fine-tuned version: [h2oai/h2o-danube2-1.8b-chat](https://huggingface.co/h2oai/h2o-danube2-1.8b-chat).
59
+
60
+ To use the model with the transformers library on a machine with GPUs, first make sure you have the transformers library installed.
61
+
62
+ ```python
63
+ # pip install transformers>=4.39.3
64
+
65
+ import torch
66
+ from transformers import AutoModelForCausalLM, AutoTokenizer
67
+
68
+ tokenizer = AutoTokenizer.from_pretrained("h2oai/h2o-danube2-1.8b-base")
69
+
70
+ model = AutoModelForCausalLM.from_pretrained(
71
+ "h2oai/h2o-danube2-1.8b-base",
72
+ torch_dtype=torch.bfloat16,
73
+ )
74
+ model.cuda()
75
+
76
+ inputs = tokenizer("The Danube is the second longest river in Europe", return_tensors="pt").to(model.device)
77
+ res = model.generate(
78
+ **inputs,
79
+ max_new_tokens=38,
80
+ do_sample=False,
81
+ )
82
+ print(tokenizer.decode(res[0], skip_special_tokens=True))
83
+ ```
84
+
85
+ ## Benchmarks
86
+
87
+ Among models of similar size h2o-danube2-1.8b-base achieves best results (on average) across benchmarks of Open LLM Leaderboard 🤗
88
+
89
+
90
+ | Model | Size | ARC | HellaSwag | MMLU | TruthfulQA | Winogrande | GSM8k | Average |
91
+ |-------------------------------------------|-----------------|-----------|------|------------|-------|-------|-------|------|
92
+ | StableLM2-1.6B | 1.6B | 43.34 | 70.45| 38.95 | 36.78 | 64.56 | 17.44 | 45.25 |
93
+ | Gemma-2B | 2.5B | 48.46 | 71.65 | 41.68 | 33.13 | 66.77 | 17.36 | 46.51 |
94
+ | Qwen1.5-1.8B | 1.8B | 37.88 | 61.42 | **46.71** | 39.43 | 60.30 | **33.59** | 46.55 |
95
+ | Phi-1.5 | 1.3B | **52.90** | 63.79 | 43.89 | **40.89** | **72.22** | 12.43 | 47.69 |
96
+ | H2O-Danube2 | 1.8B | 43.52 | **73.06** | 40.05 | 38.09 | 68.43 | 29.34 | **48.75** |
97
+
98
+
99
+ ## Disclaimer
100
+
101
+ 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.
102
+
103
+ - 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.
104
+ - 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.
105
+ - 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.
106
+ - 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.
107
+ - 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.
108
+ - 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.
109
+
110
+ 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.
111
+