bartowski commited on
Commit
ab41646
1 Parent(s): f2563b7

measurement.json

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