bartowski commited on
Commit
3e5f66e
1 Parent(s): 9137850

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -16
README.md CHANGED
@@ -21,30 +21,26 @@ Using <a href="https://github.com/turboderp/exllamav2/releases/tag/v0.0.11">turb
21
 
22
  Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
23
 
24
- Conversion was done using the default calibration dataset.
25
-
26
- Default arguments used except when the bits per weight is above 6.0, at that point the lm_head layer is quantized at 8 bits per weight instead of the default 6.
27
-
28
  Original model: https://huggingface.co/argilla/distilabeled-Hermes-2.5-Mistral-7B
29
 
 
30
 
 
 
 
 
 
 
 
31
 
32
- <a href="https://huggingface.co/bartowski/distilabeled-Hermes-2.5-Mistral-7B-exl2/tree/8_0">8.0 bits per weight</a>
33
-
34
- <a href="https://huggingface.co/bartowski/distilabeled-Hermes-2.5-Mistral-7B-exl2/tree/6_5">6.5 bits per weight</a>
35
-
36
- <a href="https://huggingface.co/bartowski/distilabeled-Hermes-2.5-Mistral-7B-exl2/tree/5_0">5.0 bits per weight</a>
37
-
38
- <a href="https://huggingface.co/bartowski/distilabeled-Hermes-2.5-Mistral-7B-exl2/tree/4_0">4.0 bits per weight</a>
39
-
40
- <a href="https://huggingface.co/bartowski/distilabeled-Hermes-2.5-Mistral-7B-exl2/tree/3_5">3.5 bits per weight</a>
41
 
42
  ## Download instructions
43
 
44
  With git:
45
 
46
  ```shell
47
- git clone --single-branch --branch 4_0 https://huggingface.co/bartowski/distilabeled-Hermes-2.5-Mistral-7B-exl2
48
  ```
49
 
50
  With huggingface hub (credit to TheBloke for instructions):
@@ -63,6 +59,6 @@ huggingface-cli download bartowski/distilabeled-Hermes-2.5-Mistral-7B-exl2 --loc
63
  To download from a different branch, add the `--revision` parameter:
64
 
65
  ```shell
66
- mkdir distilabeled-Hermes-2.5-Mistral-7B-exl2
67
- huggingface-cli download bartowski/distilabeled-Hermes-2.5-Mistral-7B-exl2 --revision 4_0 --local-dir distilabeled-Hermes-2.5-Mistral-7B-exl2 --local-dir-use-symlinks False
68
  ```
 
21
 
22
  Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
23
 
 
 
 
 
24
  Original model: https://huggingface.co/argilla/distilabeled-Hermes-2.5-Mistral-7B
25
 
26
+ Model Size: 7b
27
 
28
+ | Branch | Bits | lm_head bits | Dataset | Size | Description |
29
+ | ----- | ---- | ------- | ------- | ------ | ------------ |
30
+ | [8_0](https://huggingface.co/Bartowski/distilabeled-Hermes-2.5-Mistral-7B-exl2/tree/8_0) | 8.0 | 8.0 | Default | 9.8 GB | Maximum quality that ExLlamaV2 can produce, near unquantized performance. |
31
+ | [6_5](https://huggingface.co/Bartowski/distilabeled-Hermes-2.5-Mistral-7B-exl2/tree/6_5) | 6.5 | 8.0 | Default | 8.6 GB | Very similar to 8.0, good tradeoff of size vs performance, **recommended**. |
32
+ | [5_0](https://huggingface.co/Bartowski/distilabeled-Hermes-2.5-Mistral-7B-exl2/tree/5_0) | 5.0 | 6.0 | Default | 7.4 GB | Slightly lower perplexity vs 6.5. |
33
+ | [4_0](https://huggingface.co/Bartowski/distilabeled-Hermes-2.5-Mistral-7B-exl2/tree/4_0) | 4.0 | 6.0 | Default | 6.5 GB | Just under GPTQ equivalent bits per weight. |
34
+ | [3_5](https://huggingface.co/Bartowski/distilabeled-Hermes-2.5-Mistral-7B-exl2/tree/3_5) | 3.5 | 6.0 | Default | 6.1 GB | Lower quality, only use if you have to. |
35
 
36
+ All VRAM requirements estimated from 16k context. For 32k context add ~2 GB.
 
 
 
 
 
 
 
 
37
 
38
  ## Download instructions
39
 
40
  With git:
41
 
42
  ```shell
43
+ git clone --single-branch --branch 6_5 https://huggingface.co/bartowski/distilabeled-Hermes-2.5-Mistral-7B-exl2
44
  ```
45
 
46
  With huggingface hub (credit to TheBloke for instructions):
 
59
  To download from a different branch, add the `--revision` parameter:
60
 
61
  ```shell
62
+ mkdir distilabeled-Hermes-2.5-Mistral-7B-exl2-6_5
63
+ huggingface-cli download bartowski/distilabeled-Hermes-2.5-Mistral-7B-exl2 --revision 6_5 --local-dir distilabeled-Hermes-2.5-Mistral-7B-exl2-6_5 --local-dir-use-symlinks False
64
  ```