Suparious commited on
Commit
123bc66
1 Parent(s): c4f36c2

Add landing page

Browse files
Files changed (1) hide show
  1. README.md +57 -0
README.md CHANGED
@@ -1,3 +1,60 @@
1
  ---
2
  license: apache-2.0
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ quantized_by: suparious
4
+ pipeline_tag: text-generation
5
  ---
6
+
7
+ ## Exllama v2 Quantizations of mistral-7b-v0.2-layla-v4
8
+
9
+ Using <a href="https://github.com/turboderp/exllamav2/releases/tag/v0.0.16">turboderp's ExLlamaV2 v0.0.16</a> for quantization.
10
+
11
+ Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
12
+
13
+ Original model: l3utterfly/mistral-7b-v0.2-layla-v4
14
+
15
+ Model Size: 7b
16
+
17
+ | Branch | Bits | lm_head bits | Dataset | Size | Description |
18
+ | ----- | ---- | ------- | ------- | ------- | ------------ |
19
+ | [8_0](https://huggingface.co/suparious/mistral-7b-v0.2-layla-v4-exl2/tree/8_0) | 8.0 | 8.0 | Default | 9.8 GB | Maximum quality that ExLlamaV2 can produce, near unquantized performance. |
20
+ | [6_5](https://huggingface.co/suparious/mistral-7b-v0.2-layla-v4-exl2/tree/6_5) | 6.5 | 8.0 | Default | 8.6 GB | Very similar to 8.0, good tradeoff of size vs performance, **recommended**. |
21
+ | [5_0](https://huggingface.co/suparious/mistral-7b-v0.2-layla-v4-exl2/tree/5_0) | 5.0 | 6.0 | Default | 7.4 GB | Slightly lower perplexity vs 6.5. |
22
+ | [4_0](https://huggingface.co/suparious/mistral-7b-v0.2-layla-v4-exl2/tree/4_0) | 4.0 | 6.0 | Default | 6.5 GB | Just under GPTQ equivalent bits per weight. |
23
+
24
+ All VRAM requirements estimated from 16k context. For 32k context add ~2 GB.
25
+
26
+ <a href="https://huggingface.co/suparious/mistral-7b-v0.2-layla-v4-exl2/tree/4_0">4.0 bits per weight</a>
27
+
28
+ <a href="https://huggingface.co/suparious/mistral-7b-v0.2-layla-v4-exl2/tree/5_0">5.0 bits per weight</a>
29
+
30
+ <a href="https://huggingface.co/suparious/mistral-7b-v0.2-layla-v4-exl2/tree/6_5">6.5 bits per weight</a>
31
+
32
+ <a href="https://huggingface.co/suparious/mistral-7b-v0.2-layla-v4-exl2/tree/8_0">8.0 bits per weight</a>
33
+
34
+ ## Download instructions
35
+
36
+ With git:
37
+
38
+ ```shell
39
+ git clone --single-branch --branch 4_0 https://huggingface.co/suparious/mistral-7b-v0.2-layla-v4-exl2
40
+ ```
41
+
42
+ With huggingface hub (credit to TheBloke and bartowski for instructions):
43
+
44
+ ```shell
45
+ pip3 install huggingface-hub
46
+ ```
47
+
48
+ To download the `main` (only useful if you only care about measurement.json) branch to a folder called `mistral-7b-v0.2-layla-v4-exl2`:
49
+
50
+ ```shell
51
+ mkdir mistral-7b-v0.2-layla-v4-exl2
52
+ huggingface-cli download suparious/mistral-7b-v0.2-layla-v4-exl2 --local-dir mistral-7b-v0.2-layla-v4-exl2 --local-dir-use-symlinks False
53
+ ```
54
+
55
+ To download from a different branch, add the `--revision` parameter:
56
+
57
+ ```shell
58
+ mkdir mistral-7b-v0.2-layla-v4-exl2-6_5
59
+ huggingface-cli download suparious/mistral-7b-v0.2-layla-v4-exl2 --revision 6_5 --local-dir mistral-7b-v0.2-layla-v4-exl2-6_5 --local-dir-use-symlinks False
60
+ ```