Text Generation
English
bartowski commited on
Commit
3fd03c0
1 Parent(s): cc2d060

Add bit table

Browse files
Files changed (1) hide show
  1. README.md +14 -16
README.md CHANGED
@@ -21,28 +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/cognitivecomputations/dolphin-2.6-mistral-7b-dpo-laser/
29
-
30
- <a href="https://huggingface.co/bartowski/dolphin-2.6-mistral-7b-dpo-laser-exl2/tree/3_5">3.5 bits per weight</a>
31
-
32
- <a href="https://huggingface.co/bartowski/dolphin-2.6-mistral-7b-dpo-laser-exl2/tree/4_0">4.0 bits per weight</a>
33
-
34
- <a href="https://huggingface.co/bartowski/dolphin-2.6-mistral-7b-dpo-laser-exl2/tree/5_0">5.0 bits per weight</a>
35
-
36
- <a href="https://huggingface.co/bartowski/dolphin-2.6-mistral-7b-dpo-laser-exl2/tree/6_5">6.5 bits per weight</a>
37
-
38
- <a href="https://huggingface.co/bartowski/dolphin-2.6-mistral-7b-dpo-laser-exl2/tree/8_0">8.0 bits per weight</a>
39
 
40
  ## Download instructions
41
 
42
  With git:
43
 
44
  ```shell
45
- git clone --single-branch --branch 4_0 https://huggingface.co/bartowski/dolphin-2.6-mistral-7b-dpo-laser-exl2
46
  ```
47
 
48
  With huggingface hub (credit to TheBloke for instructions):
@@ -61,6 +59,6 @@ huggingface-cli download bartowski/dolphin-2.6-mistral-7b-dpo-laser-exl2 --local
61
  To download from a different branch, add the `--revision` parameter:
62
 
63
  ```shell
64
- mkdir dolphin-2.6-mistral-7b-dpo-laser-exl2
65
- huggingface-cli download bartowski/dolphin-2.6-mistral-7b-dpo-laser-exl2 --revision 4_0 --local-dir dolphin-2.6-mistral-7b-dpo-laser-exl2 --local-dir-use-symlinks False
66
  ```
 
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/cognitivecomputations/dolphin-2.6-mistral-7b-dpo-laser/
25
 
26
+ Model Size: 7b
27
 
28
+ | Branch | Bits | lm_head bits | Dataset | Size | Description |
29
+ | ----- | ---- | ------- | ------- | ------ | ------------ |
30
+ | [8_0](https://huggingface.co/Bartowski/dolphin-2.6-mistral-7b-dpo-laser-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/dolphin-2.6-mistral-7b-dpo-laser-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/dolphin-2.6-mistral-7b-dpo-laser-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/dolphin-2.6-mistral-7b-dpo-laser-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/dolphin-2.6-mistral-7b-dpo-laser-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/dolphin-2.6-mistral-7b-dpo-laser-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 dolphin-2.6-mistral-7b-dpo-laser-exl2-6_5
63
+ huggingface-cli download bartowski/dolphin-2.6-mistral-7b-dpo-laser-exl2 --revision 6_5 --local-dir dolphin-2.6-mistral-7b-dpo-laser-exl2-6_5 --local-dir-use-symlinks False
64
  ```