ybabakhin commited on
Commit
44fa2c8
1 Parent(s): 3923328

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -3
README.md CHANGED
@@ -1,3 +1,48 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ quantized_by: h2oai
15
+ ---
16
+
17
+ # h2o-danube3-500m-chat-GGUF
18
+ - Model creator: [H2O.ai](https://huggingface.co/h2oai)
19
+ - Original model: [h2oai/h2o-danube3-500m-chat](https://huggingface.co/h2oai/h2o-danube3-500m-chat)
20
+
21
+ ## Description
22
+
23
+ This repo contains GGUF format model files for [h2o-danube3-500m-chat](https://huggingface.co/h2oai/h2o-danube3-500m-chat) quantized using [llama.cpp](https://github.com/ggerganov/llama.cpp/) framework.
24
+
25
+ Table below summarizes different quantized versions of [h2o-danube3-500m-chat](https://huggingface.co/h2oai/h2o-danube3-500m-chat). It shows the trade-off between size, speed and quality of the models.
26
+
27
+
28
+ | Name | Quant method | Model size | MT-Bench AVG | Perplexity | Tokens per second |
29
+ |:----------------------------------|:----------------------------------:|:----------:|:------------:|:------------:|:-------------------:|
30
+ | [h2o-danube3-500m-chat-F16.gguf](https://huggingface.co/h2oai/h2o-danube3-500m-chat-GGUF/blob/main/h2o-danube3-500m-chat-F16.gguf) | F16 | 1.03 GB | 3.34 | 9.46 | 1870 |
31
+ | [h2o-danube3-500m-chat-Q8_0.gguf](https://huggingface.co/h2oai/h2o-danube3-500m-chat-GGUF/blob/main/h2o-danube3-500m-chat-Q8_0.gguf) | Q8_0 | 0.55 GB | 3.76 | 9.46 | 2144 |
32
+ | [h2o-danube3-500m-chat-Q6_K.gguf](https://huggingface.co/h2oai/h2o-danube3-500m-chat-GGUF/blob/main/h2o-danube3-500m-chat-Q6_K.gguf) | Q6_K | 0.42 GB | 3.77 | 9.46 | 2418 |
33
+ | [h2o-danube3-500m-chat-Q5_K_M.gguf](https://huggingface.co/h2oai/h2o-danube3-500m-chat-GGUF/blob/main/h2o-danube3-500m-chat-Q5_K_M.gguf) | Q5_K_M | 0.37 GB | 3.20 | 9.55 | 2430 |
34
+ | [h2o-danube3-500m-chat-Q4_K_M.gguf](https://huggingface.co/h2oai/h2o-danube3-500m-chat-GGUF/blob/main/h2o-danube3-500m-chat-Q4_K_M.gguf) | Q4_K_M | 0.32 GB | 3.16 | 9.96 | 2427 |
35
+
36
+ Columns in the table are:
37
+ * Name -- model name and link
38
+ * Quant method -- quantization method
39
+ * Model size -- size of the model in gigabytes
40
+ * MT-Bench AVG -- [MT-Bench](https://arxiv.org/abs/2306.05685) benchmark score. The score is from 1 to 10, the higher, the better
41
+ * Perplexity -- perplexity metric on WikiText-2 dataset. It's reported in a perplexity test from llama.cpp. The lower, the better
42
+ * Tokens per second -- generation speed in tokens per second, as reported in a perplexity test from llama.cpp. The higher, the better. Speed tests are done on a single H100 GPU
43
+
44
+
45
+ ## Prompt template
46
+ ```
47
+ <|prompt|>Why is drinking water so healthy?</s><|answer|>
48
+ ```