bartowski commited on
Commit
bbaea97
·
verified ·
1 Parent(s): 420df21

measurement.json

Browse files
Files changed (2) hide show
  1. README.md +126 -0
  2. measurement.json +0 -0
README.md ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pipeline_tag: text-generation
3
+ inference:
4
+ parameters:
5
+ temperature: 0.2
6
+ top_p: 0.95
7
+ widget:
8
+ - text: 'def print_hello_world():'
9
+ example_title: Hello world
10
+ group: Python
11
+ datasets:
12
+ - bigcode/the-stack-v2-train
13
+ license: bigcode-openrail-m
14
+ library_name: transformers
15
+ tags:
16
+ - code
17
+ model-index:
18
+ - name: starcoder2-7b
19
+ results:
20
+ - task:
21
+ type: text-generation
22
+ dataset:
23
+ name: CruxEval-I
24
+ type: cruxeval-i
25
+ metrics:
26
+ - type: pass@1
27
+ value: 34.6
28
+ - task:
29
+ type: text-generation
30
+ dataset:
31
+ name: DS-1000
32
+ type: ds-1000
33
+ metrics:
34
+ - type: pass@1
35
+ value: 27.8
36
+ - task:
37
+ type: text-generation
38
+ dataset:
39
+ name: GSM8K (PAL)
40
+ type: gsm8k-pal
41
+ metrics:
42
+ - type: accuracy
43
+ value: 40.4
44
+ - task:
45
+ type: text-generation
46
+ dataset:
47
+ name: HumanEval+
48
+ type: humanevalplus
49
+ metrics:
50
+ - type: pass@1
51
+ value: 29.9
52
+ - task:
53
+ type: text-generation
54
+ dataset:
55
+ name: HumanEval
56
+ type: humaneval
57
+ metrics:
58
+ - type: pass@1
59
+ value: 35.4
60
+ - task:
61
+ type: text-generation
62
+ dataset:
63
+ name: RepoBench-v1.1
64
+ type: repobench-v1.1
65
+ metrics:
66
+ - type: edit-smiliarity
67
+ value: 72.07
68
+ quantized_by: bartowski
69
+ ---
70
+
71
+ ## Exllama v2 Quantizations of starcoder2-7b
72
+
73
+ Using <a href="https://github.com/turboderp/exllamav2/releases/tag/v0.0.14">turboderp's ExLlamaV2 v0.0.14</a> for quantization.
74
+
75
+ <b>The "main" branch only contains the measurement.json, download one of the other branches for the model (see below)</b>
76
+
77
+ Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
78
+
79
+ Original model: https://huggingface.co/bigcode/starcoder2-7b
80
+
81
+ | Branch | Bits | lm_head bits | VRAM (4k) | VRAM (16k) | VRAM (32k) | Description |
82
+ | ----- | ---- | ------- | ------ | ------ | ------ | ------------ |
83
+ | [8_0](https://huggingface.co/bartowski/starcoder2-7b-exl2/tree/8_0) | 8.0 | 8.0 | 8.4 GB | 9.8 GB | 11.8 GB | Maximum quality that ExLlamaV2 can produce, near unquantized performance. |
84
+ | [6_5](https://huggingface.co/bartowski/starcoder2-7b-exl2/tree/6_5) | 6.5 | 8.0 | 7.2 GB | 8.6 GB | 10.6 GB | Very similar to 8.0, good tradeoff of size vs performance, **recommended**. |
85
+ | [5_0](https://huggingface.co/bartowski/starcoder2-7b-exl2/tree/5_0) | 5.0 | 6.0 | 6.0 GB | 7.4 GB | 9.4 GB | Slightly lower quality vs 6.5, but usable on 8GB cards. |
86
+ | [4_25](https://huggingface.co/bartowski/starcoder2-7b-exl2/tree/4_25) | 4.25 | 6.0 | 5.3 GB | 6.7 GB | 8.7 GB | GPTQ equivalent bits per weight, slightly higher quality. |
87
+ | [3_5](https://huggingface.co/bartowski/starcoder2-7b-exl2/tree/3_5) | 3.5 | 6.0 | 4.7 GB | 6.1 GB | 8.1 GB | Lower quality, only use if you have to. |
88
+
89
+ ## Download instructions
90
+
91
+ With git:
92
+
93
+ ```shell
94
+ git clone --single-branch --branch 6_5 https://huggingface.co/bartowski/starcoder2-7b-exl2 starcoder2-7b-exl2-6_5
95
+ ```
96
+
97
+ With huggingface hub (credit to TheBloke for instructions):
98
+
99
+ ```shell
100
+ pip3 install huggingface-hub
101
+ ```
102
+
103
+ To download the `main` (only useful if you only care about measurement.json) branch to a folder called `starcoder2-7b-exl2`:
104
+
105
+ ```shell
106
+ mkdir starcoder2-7b-exl2
107
+ huggingface-cli download bartowski/starcoder2-7b-exl2 --local-dir starcoder2-7b-exl2 --local-dir-use-symlinks False
108
+ ```
109
+
110
+ To download from a different branch, add the `--revision` parameter:
111
+
112
+ Linux:
113
+
114
+ ```shell
115
+ mkdir starcoder2-7b-exl2-6_5
116
+ huggingface-cli download bartowski/starcoder2-7b-exl2 --revision 6_5 --local-dir starcoder2-7b-exl2-6_5 --local-dir-use-symlinks False
117
+ ```
118
+
119
+ Windows (which apparently doesn't like _ in folders sometimes?):
120
+
121
+ ```shell
122
+ mkdir starcoder2-7b-exl2-6.5
123
+ huggingface-cli download bartowski/starcoder2-7b-exl2 --revision 6_5 --local-dir starcoder2-7b-exl2-6.5 --local-dir-use-symlinks False
124
+ ```
125
+
126
+ 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