bartowski commited on
Commit
0990d73
1 Parent(s): b6b1c0d

measurement.json

Browse files
Files changed (2) hide show
  1. README.md +99 -0
  2. measurement.json +0 -0
README.md ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: NousResearch/Hermes-2-Pro-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
+ - merges
17
+ model-index:
18
+ - name: Hermes-2-Pro-Llama-3-Instruct-8B-Merge
19
+ results: []
20
+ language:
21
+ - en
22
+ datasets:
23
+ - teknium/OpenHermes-2.5
24
+ widget:
25
+ - example_title: Hermes 2 Pro Llama-3 Instruct Merge
26
+ messages:
27
+ - role: system
28
+ content: >-
29
+ You are a sentient, superintelligent artificial general intelligence, here
30
+ to teach and assist me.
31
+ - role: user
32
+ content: >-
33
+ Write a short story about Goku discovering kirby has teamed up with Majin
34
+ Buu to destroy the world.
35
+ quantized_by: bartowski
36
+ pipeline_tag: text-generation
37
+ ---
38
+
39
+ ## Exllama v2 Quantizations of Hermes-2-Theta-Llama-3-8B
40
+
41
+ Using <a href="https://github.com/turboderp/exllamav2/releases/tag/v0.0.21">turboderp's ExLlamaV2 v0.0.21</a> for quantization.
42
+
43
+ <b>The "main" branch only contains the measurement.json, download one of the other branches for the model (see below)</b>
44
+
45
+ Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
46
+
47
+ Original model: https://huggingface.co/NousResearch/Hermes-2-Theta-Llama-3-8B
48
+
49
+ ## Prompt format
50
+
51
+ ```
52
+ <|begin_of_text|><|im_start|>system
53
+ {system_prompt}<|im_end|>
54
+ <|im_start|>user
55
+ {prompt}<|im_end|>
56
+ <|im_start|>assistant
57
+
58
+ ```
59
+
60
+ ## Available sizes
61
+
62
+
63
+ | Branch | Bits | lm_head bits | VRAM (4k) | VRAM (8K) | VRAM (16k) | VRAM (32k) | Description |
64
+ | ----- | ---- | ------- | ------ | ------ | ------ | ------ | ------------ |
65
+ | [8_0](https://huggingface.co/bartowski/Hermes-2-Theta-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. |
66
+ | [6_5](https://huggingface.co/bartowski/Hermes-2-Theta-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**. |
67
+ | [5_0](https://huggingface.co/bartowski/Hermes-2-Theta-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. |
68
+ | [4_25](https://huggingface.co/bartowski/Hermes-2-Theta-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. |
69
+ | [3_5](https://huggingface.co/bartowski/Hermes-2-Theta-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. |
70
+
71
+ ## Download instructions
72
+
73
+ With git:
74
+
75
+ ```shell
76
+ git clone --single-branch --branch 6_5 https://huggingface.co/bartowski/Hermes-2-Theta-Llama-3-8B-exl2 Hermes-2-Theta-Llama-3-8B-exl2-6_5
77
+ ```
78
+
79
+ With huggingface hub (credit to TheBloke for instructions):
80
+
81
+ ```shell
82
+ pip3 install huggingface-hub
83
+ ```
84
+
85
+ To download a specific branch, use the `--revision` parameter. For example, to download the 6.5 bpw branch:
86
+
87
+ Linux:
88
+
89
+ ```shell
90
+ huggingface-cli download bartowski/Hermes-2-Theta-Llama-3-8B-exl2 --revision 6_5 --local-dir Hermes-2-Theta-Llama-3-8B-exl2-6_5 --local-dir-use-symlinks False
91
+ ```
92
+
93
+ Windows (which apparently doesn't like _ in folders sometimes?):
94
+
95
+ ```shell
96
+ huggingface-cli download bartowski/Hermes-2-Theta-Llama-3-8B-exl2 --revision 6_5 --local-dir Hermes-2-Theta-Llama-3-8B-exl2-6.5 --local-dir-use-symlinks False
97
+ ```
98
+
99
+ 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