bartowski commited on
Commit
cc705ae
1 Parent(s): a5ef8a7

measurement.json

Browse files
Files changed (2) hide show
  1. README.md +88 -0
  2. measurement.json +0 -0
README.md ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ library_name: transformers
5
+ pipeline_tag: text-generation
6
+ datasets:
7
+ - jondurbin/airoboros-2.2
8
+ - Open-Orca/OpenOrca
9
+ - garage-bAInd/Open-Platypus
10
+ - WizardLM/WizardLM_evol_instruct_V2_196k
11
+ - TokenBender/python_eval_instruct_51k
12
+ - codefuse-ai/Evol-Instruction-66k
13
+ tags:
14
+ - llama-2
15
+ - code
16
+ license: llama2
17
+ model-index:
18
+ - name: SpeechlessCoder
19
+ results:
20
+ - task:
21
+ type: text-generation
22
+ dataset:
23
+ type: openai_humaneval
24
+ name: HumanEval
25
+ metrics:
26
+ - name: pass@1
27
+ type: pass@1
28
+ value:
29
+ verified: false
30
+ quantized_by: bartowski
31
+ ---
32
+
33
+ ## Exllama v2 Quantizations of speechless-sparsetral-mistral-16x7b-MoE
34
+
35
+ Using <a href="https://github.com/turboderp/exllamav2/releases/tag/v0.0.13">turboderp's ExLlamaV2 v0.0.13</a> for quantization.
36
+
37
+ <b>The "main" branch only contains the measurement.json, download one of the other branches for the model (see below)</b>
38
+
39
+ Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
40
+
41
+ Original model: https://huggingface.co/uukuguy/speechless-sparsetral-mistral-16x7b-MoE
42
+
43
+ | Branch | Bits | lm_head bits | VRAM (4k) | VRAM (16k) | VRAM (32k) | Description |
44
+ | ----- | ---- | ------- | ------ | ------ | ------ | ------------ |
45
+ | [8_0](https://huggingface.co/bartowski/speechless-sparsetral-mistral-16x7b-MoE-exl2/tree/8_0) | 8.0 | 8.0 | 8.3 GB | 9.7 GB | 11.8 GB | Maximum quality that ExLlamaV2 can produce, near unquantized performance. |
46
+ | [6_5](https://huggingface.co/bartowski/speechless-sparsetral-mistral-16x7b-MoE-exl2/tree/6_5) | 6.5 | 8.0 | 7.1 GB | 8.5 GB | 10.6 GB | Very similar to 8.0, good tradeoff of size vs performance, **recommended**. |
47
+ | [5_0](https://huggingface.co/bartowski/speechless-sparsetral-mistral-16x7b-MoE-exl2/tree/5_0) | 5.0 | 6.0 | 5.7 GB | 7.1 GB | 9.2 GB | Slightly lower quality vs 6.5, but usable on 8GB cards. |
48
+ | [4_25](https://huggingface.co/bartowski/speechless-sparsetral-mistral-16x7b-MoE-exl2/tree/4_25) | 4.25 | 6.0 | 5.1 GB | 6.5 GB | 8.6 GB | GPTQ equivalent bits per weight, slightly higher quality. |
49
+ | [3_5](https://huggingface.co/bartowski/speechless-sparsetral-mistral-16x7b-MoE-exl2/tree/3_5) | 3.5 | 6.0 | 4.4 GB | 5.8 GB | 7.9 GB | Lower quality, only use if you have to. |
50
+
51
+ ## Download instructions
52
+
53
+ With git:
54
+
55
+ ```shell
56
+ git clone --single-branch --branch 6_5 https://huggingface.co/bartowski/speechless-sparsetral-mistral-16x7b-MoE-exl2 speechless-sparsetral-mistral-16x7b-MoE-exl2-6_5
57
+ ```
58
+
59
+ With huggingface hub (credit to TheBloke for instructions):
60
+
61
+ ```shell
62
+ pip3 install huggingface-hub
63
+ ```
64
+
65
+ To download the `main` (only useful if you only care about measurement.json) branch to a folder called `speechless-sparsetral-mistral-16x7b-MoE-exl2`:
66
+
67
+ ```shell
68
+ mkdir speechless-sparsetral-mistral-16x7b-MoE-exl2
69
+ huggingface-cli download bartowski/speechless-sparsetral-mistral-16x7b-MoE-exl2 --local-dir speechless-sparsetral-mistral-16x7b-MoE-exl2 --local-dir-use-symlinks False
70
+ ```
71
+
72
+ To download from a different branch, add the `--revision` parameter:
73
+
74
+ Linux:
75
+
76
+ ```shell
77
+ mkdir speechless-sparsetral-mistral-16x7b-MoE-exl2-6_5
78
+ huggingface-cli download bartowski/speechless-sparsetral-mistral-16x7b-MoE-exl2 --revision 6_5 --local-dir speechless-sparsetral-mistral-16x7b-MoE-exl2-6_5 --local-dir-use-symlinks False
79
+ ```
80
+
81
+ Windows (which apparently doesn't like _ in folders sometimes?):
82
+
83
+ ```shell
84
+ mkdir speechless-sparsetral-mistral-16x7b-MoE-exl2-6.5
85
+ huggingface-cli download bartowski/speechless-sparsetral-mistral-16x7b-MoE-exl2 --revision 6_5 --local-dir speechless-sparsetral-mistral-16x7b-MoE-exl2-6.5 --local-dir-use-symlinks False
86
+ ```
87
+
88
+ 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