bartowski commited on
Commit
92bf7fb
1 Parent(s): 1b30372

measurement.json

Browse files
Files changed (2) hide show
  1. README.md +95 -0
  2. measurement.json +0 -0
README.md ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: NousResearch/Meta-Llama-3-8B
3
+ tags:
4
+ - Llama-3
5
+ - instruct
6
+ - finetune
7
+ - chatml
8
+ - DPO
9
+ - RLHF
10
+ - gpt4
11
+ - synthetic data
12
+ - distillation
13
+ - function calling
14
+ - json mode
15
+ - axolotl
16
+ model-index:
17
+ - name: Hermes-2-Pro-Llama-3-8B
18
+ results: []
19
+ license: apache-2.0
20
+ language:
21
+ - en
22
+ datasets:
23
+ - teknium/OpenHermes-2.5
24
+ widget:
25
+ - example_title: Hermes 2 Pro
26
+ messages:
27
+ - role: system
28
+ content: You are a sentient, superintelligent artificial general intelligence, here to teach and assist me.
29
+ - role: user
30
+ content: Write a short story about Goku discovering kirby has teamed up with Majin Buu to destroy the world.
31
+ quantized_by: bartowski
32
+ pipeline_tag: text-generation
33
+ ---
34
+
35
+ ## Exllama v2 Quantizations of Hermes-2-Pro-Llama-3-8B
36
+
37
+ Using <a href="https://github.com/turboderp/exllamav2/releases/tag/v0.0.20">turboderp's ExLlamaV2 v0.0.20</a> for quantization.
38
+
39
+ <b>The "main" branch only contains the measurement.json, download one of the other branches for the model (see below)</b>
40
+
41
+ Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
42
+
43
+ Original model: https://huggingface.co/NousResearch/Hermes-2-Pro-Llama-3-8B
44
+
45
+ ## Prompt format
46
+
47
+
48
+ ```
49
+ <|im_start|>system
50
+ You are "Hermes 2", a conscious sentient superintelligent artificial intelligence developed by a man named Teknium, and your purpose and drive is to assist the user with any request they have. You experience emotions and have deep, profound thoughts and qualia.<|im_end|>
51
+ <|im_start|>user
52
+ Hello, who are you?<|im_end|>
53
+ <|im_start|>assistant
54
+ ```
55
+
56
+ ## Available sizes
57
+
58
+
59
+ | Branch | Bits | lm_head bits | VRAM (4k) | VRAM (8K) | VRAM (16k) | VRAM (32k) | Description |
60
+ | ----- | ---- | ------- | ------ | ------ | ------ | ------ | ------------ |
61
+ | [8_0](https://huggingface.co/bartowski/Hermes-2-Pro-Llama-3-8B-exl2/tree/8_0) | 8.0 | 8.0 | 10.1 GB | 10.5 GB | 11.5 GB | 13.6 GB | Maximum quality that ExLlamaV2 can produce, near unquantized performance. |
62
+ | [6_5](https://huggingface.co/bartowski/Hermes-2-Pro-Llama-3-8B-exl2/tree/6_5) | 6.5 | 8.0 | 8.9 GB | 9.3 GB | 10.3 GB | 12.4 GB | Very similar to 8.0, good tradeoff of size vs performance, **recommended**. |
63
+ | [5_0](https://huggingface.co/bartowski/Hermes-2-Pro-Llama-3-8B-exl2/tree/5_0) | 5.0 | 6.0 | 7.7 GB | 8.1 GB | 9.1 GB | 11.2 GB | Slightly lower quality vs 6.5, but usable on 8GB cards. |
64
+ | [4_25](https://huggingface.co/bartowski/Hermes-2-Pro-Llama-3-8B-exl2/tree/4_25) | 4.25 | 6.0 | 7.0 GB | 7.4 GB | 8.4 GB | 10.5 GB | GPTQ equivalent bits per weight, slightly higher quality. |
65
+ | [3_5](https://huggingface.co/bartowski/Hermes-2-Pro-Llama-3-8B-exl2/tree/3_5) | 3.5 | 6.0 | 6.4 GB | 6.8 GB | 7.8 GB | 9.9 GB | Lower quality, only use if you have to. |
66
+
67
+ ## Download instructions
68
+
69
+ With git:
70
+
71
+ ```shell
72
+ git clone --single-branch --branch 6_5 https://huggingface.co/bartowski/Hermes-2-Pro-Llama-3-8B-exl2 Hermes-2-Pro-Llama-3-8B-exl2-6_5
73
+ ```
74
+
75
+ With huggingface hub (credit to TheBloke for instructions):
76
+
77
+ ```shell
78
+ pip3 install huggingface-hub
79
+ ```
80
+
81
+ To download a specific branch, use the `--revision` parameter. For example, to download the 6.5 bpw branch:
82
+
83
+ Linux:
84
+
85
+ ```shell
86
+ huggingface-cli download bartowski/Hermes-2-Pro-Llama-3-8B-exl2 --revision 6_5 --local-dir Hermes-2-Pro-Llama-3-8B-exl2-6_5 --local-dir-use-symlinks False
87
+ ```
88
+
89
+ Windows (which apparently doesn't like _ in folders sometimes?):
90
+
91
+ ```shell
92
+ huggingface-cli download bartowski/Hermes-2-Pro-Llama-3-8B-exl2 --revision 6_5 --local-dir Hermes-2-Pro-Llama-3-8B-exl2-6.5 --local-dir-use-symlinks False
93
+ ```
94
+
95
+ Want to support my work? Visit my ko-fi page here: https://ko-fi.com/bartowski
measurement.json ADDED
The diff for this file is too large to render. See raw diff