bartowski commited on
Commit
bd17fae
1 Parent(s): 7d2cae7

measurement.json

Browse files
Files changed (2) hide show
  1. README.md +107 -0
  2. measurement.json +0 -0
README.md ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: mit
5
+ base_model:
6
+ - mistralai/Mistral-7B-v0.1
7
+ datasets:
8
+ - HuggingFaceH4/ultrafeedback_binarized
9
+ pipeline_tag: text-generation
10
+ model-index:
11
+ - name: Mistral-ORPO-⍺
12
+ results:
13
+ - task:
14
+ type: text-generation
15
+ dataset:
16
+ name: AlpacaEval 1
17
+ type: AlpacaEval
18
+ metrics:
19
+ - type: AlpacaEval 1.0
20
+ value: 87.92%
21
+ name: Win Rate
22
+ source:
23
+ url: https://github.com/tatsu-lab/alpaca_eval
24
+ name: self-reported
25
+ - task:
26
+ type: text-generation
27
+ dataset:
28
+ name: AlpacaEval 2
29
+ type: AlpacaEval
30
+ metrics:
31
+ - type: AlpacaEval 2.0
32
+ value: 11.33%
33
+ name: Win Rate
34
+ source:
35
+ url: https://github.com/tatsu-lab/alpaca_eval
36
+ name: self-reported
37
+ - task:
38
+ type: text-generation
39
+ dataset:
40
+ name: MT-Bench
41
+ type: MT-Bench
42
+ metrics:
43
+ - type: MT-Bench
44
+ value: 7.23
45
+ name: Score
46
+ source:
47
+ url: https://github.com/lm-sys/FastChat/blob/main/fastchat/llm_judge/
48
+ name: self-reported
49
+ quantized_by: bartowski
50
+ ---
51
+
52
+ ## Exllama v2 Quantizations of mistral-orpo-alpha
53
+
54
+ Using <a href="https://github.com/turboderp/exllamav2/releases/tag/v0.0.15">turboderp's ExLlamaV2 v0.0.15</a> for quantization.
55
+
56
+ <b>The "main" branch only contains the measurement.json, download one of the other branches for the model (see below)</b>
57
+
58
+ Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
59
+
60
+ Original model: https://huggingface.co/kaist-ai/mistral-orpo-alpha
61
+
62
+ | Branch | Bits | lm_head bits | VRAM (4k) | VRAM (16k) | VRAM (32k) | Description |
63
+ | ----- | ---- | ------- | ------ | ------ | ------ | ------------ |
64
+ | [8_0](https://huggingface.co/bartowski/mistral-orpo-alpha-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. |
65
+ | [6_5](https://huggingface.co/bartowski/mistral-orpo-alpha-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**. |
66
+ | [5_0](https://huggingface.co/bartowski/mistral-orpo-alpha-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. |
67
+ | [4_25](https://huggingface.co/bartowski/mistral-orpo-alpha-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. |
68
+ | [3_5](https://huggingface.co/bartowski/mistral-orpo-alpha-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. |
69
+
70
+ ## Download instructions
71
+
72
+ With git:
73
+
74
+ ```shell
75
+ git clone --single-branch --branch 6_5 https://huggingface.co/bartowski/mistral-orpo-alpha-exl2 mistral-orpo-alpha-exl2-6_5
76
+ ```
77
+
78
+ With huggingface hub (credit to TheBloke for instructions):
79
+
80
+ ```shell
81
+ pip3 install huggingface-hub
82
+ ```
83
+
84
+ To download the `main` (only useful if you only care about measurement.json) branch to a folder called `mistral-orpo-alpha-exl2`:
85
+
86
+ ```shell
87
+ mkdir mistral-orpo-alpha-exl2
88
+ huggingface-cli download bartowski/mistral-orpo-alpha-exl2 --local-dir mistral-orpo-alpha-exl2 --local-dir-use-symlinks False
89
+ ```
90
+
91
+ To download from a different branch, add the `--revision` parameter:
92
+
93
+ Linux:
94
+
95
+ ```shell
96
+ mkdir mistral-orpo-alpha-exl2-6_5
97
+ huggingface-cli download bartowski/mistral-orpo-alpha-exl2 --revision 6_5 --local-dir mistral-orpo-alpha-exl2-6_5 --local-dir-use-symlinks False
98
+ ```
99
+
100
+ Windows (which apparently doesn't like _ in folders sometimes?):
101
+
102
+ ```shell
103
+ mkdir mistral-orpo-alpha-exl2-6.5
104
+ huggingface-cli download bartowski/mistral-orpo-alpha-exl2 --revision 6_5 --local-dir mistral-orpo-alpha-exl2-6.5 --local-dir-use-symlinks False
105
+ ```
106
+
107
+ 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