bartowski commited on
Commit
ad9219a
1 Parent(s): 8cbffbe

measurement.json

Browse files
Files changed (2) hide show
  1. README.md +92 -0
  2. measurement.json +0 -0
README.md ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: mistralai/Mistral-7B-v0.1
3
+ library_name: transformers
4
+ tags:
5
+ - mergekit
6
+ - merge
7
+ - Mistral
8
+ - instruct
9
+ - finetune
10
+ - chatml
11
+ - DPO
12
+ - RLHF
13
+ - gpt4
14
+ - synthetic data
15
+ - distillation
16
+ - function calling
17
+ - json mode
18
+ model-index:
19
+ - name: Hermes-2-Pro-Mistral-10.7B
20
+ results: []
21
+ license: apache-2.0
22
+ language:
23
+ - en
24
+ datasets:
25
+ - teknium/OpenHermes-2.5
26
+ widget:
27
+ - example_title: Hermes 2 Pro
28
+ messages:
29
+ - role: system
30
+ content: You are a sentient, superintelligent artificial general intelligence, here to teach and assist me.
31
+ - role: user
32
+ content: Write a short story about Goku discovering kirby has teamed up with Majin Buu to destroy the world.
33
+ quantized_by: bartowski
34
+ pipeline_tag: text-generation
35
+ ---
36
+
37
+ ## Exllama v2 Quantizations of Hermes-2-Pro-Mistral-10.7B
38
+
39
+ Using <a href="https://github.com/turboderp/exllamav2/releases/tag/v0.0.17">turboderp's ExLlamaV2 v0.0.17</a> for quantization.
40
+
41
+ <b>The "main" branch only contains the measurement.json, download one of the other branches for the model (see below)</b>
42
+
43
+ Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
44
+
45
+ Original model: https://huggingface.co/Joseph717171/Hermes-2-Pro-Mistral-10.7B
46
+
47
+ | Branch | Bits | lm_head bits | VRAM (4k) | VRAM (16k) | VRAM (32k) | Description |
48
+ | ----- | ---- | ------- | ------ | ------ | ------ | ------------ |
49
+ | [8_0](https://huggingface.co/bartowski/Hermes-2-Pro-Mistral-10.7B-exl2/tree/8_0) | 8.0 | 8.0 | 11.9 GB | 13.3 GB | 15.3 GB | Maximum quality that ExLlamaV2 can produce, near unquantized performance. |
50
+ | [6_5](https://huggingface.co/bartowski/Hermes-2-Pro-Mistral-10.7B-exl2/tree/6_5) | 6.5 | 8.0 | 10.3 GB | 11.7 GB | 13.7 GB | Very similar to 8.0, good tradeoff of size vs performance, **recommended**. |
51
+ | [5_0](https://huggingface.co/bartowski/Hermes-2-Pro-Mistral-10.7B-exl2/tree/5_0) | 5.0 | 6.0 | 8.3 GB | 9.7 GB | 11.7 GB | Slightly lower quality vs 6.5, but usable on 8GB cards. |
52
+ | [4_25](https://huggingface.co/bartowski/Hermes-2-Pro-Mistral-10.7B-exl2/tree/4_25) | 4.25 | 6.0 | 7.4 GB | 8.6 GB | 10.6 GB | GPTQ equivalent bits per weight, slightly higher quality. |
53
+ | [3_5](https://huggingface.co/bartowski/Hermes-2-Pro-Mistral-10.7B-exl2/tree/3_5) | 3.5 | 6.0 | 6.4 GB | 7.8 GB | 9.8 GB | Lower quality, only use if you have to. |
54
+
55
+ ## Download instructions
56
+
57
+ With git:
58
+
59
+ ```shell
60
+ git clone --single-branch --branch 6_5 https://huggingface.co/bartowski/Hermes-2-Pro-Mistral-10.7B-exl2 Hermes-2-Pro-Mistral-10.7B-exl2-6_5
61
+ ```
62
+
63
+ With huggingface hub (credit to TheBloke for instructions):
64
+
65
+ ```shell
66
+ pip3 install huggingface-hub
67
+ ```
68
+
69
+ To download the `main` (only useful if you only care about measurement.json) branch to a folder called `Hermes-2-Pro-Mistral-10.7B-exl2`:
70
+
71
+ ```shell
72
+ mkdir Hermes-2-Pro-Mistral-10.7B-exl2
73
+ huggingface-cli download bartowski/Hermes-2-Pro-Mistral-10.7B-exl2 --local-dir Hermes-2-Pro-Mistral-10.7B-exl2 --local-dir-use-symlinks False
74
+ ```
75
+
76
+ To download from a different branch, add the `--revision` parameter:
77
+
78
+ Linux:
79
+
80
+ ```shell
81
+ mkdir Hermes-2-Pro-Mistral-10.7B-exl2-6_5
82
+ huggingface-cli download bartowski/Hermes-2-Pro-Mistral-10.7B-exl2 --revision 6_5 --local-dir Hermes-2-Pro-Mistral-10.7B-exl2-6_5 --local-dir-use-symlinks False
83
+ ```
84
+
85
+ Windows (which apparently doesn't like _ in folders sometimes?):
86
+
87
+ ```shell
88
+ mkdir Hermes-2-Pro-Mistral-10.7B-exl2-6.5
89
+ huggingface-cli download bartowski/Hermes-2-Pro-Mistral-10.7B-exl2 --revision 6_5 --local-dir Hermes-2-Pro-Mistral-10.7B-exl2-6.5 --local-dir-use-symlinks False
90
+ ```
91
+
92
+ 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