Apel-sin commited on
Commit
aad6cff
1 Parent(s): 29638cf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -0
README.md CHANGED
@@ -1,6 +1,34 @@
1
  ---
2
  license: cc-by-nc-nd-3.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  # LLaMA3-iterative-DPO-final
5
 
6
  ## Introduction
 
1
  ---
2
  license: cc-by-nc-nd-3.0
3
  ---
4
+ # Exllama v2 RLHFlow/LLaMA3-iterative-DPO-final
5
+
6
+ Using <a href="https://github.com/turboderp/exllamav2/releases/tag/v0.0.21">turboderp's ExLlamaV2 v0.0.21</a> for quantization.
7
+
8
+ <b>The "main" branch only contains the measurement.json, download one of the other branches for the model</b>
9
+
10
+ Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
11
+
12
+ Original model: <a href="https://huggingface.co/RLHFlow/LLaMA3-iterative-DPO-final">RLHFlow/LLaMA3-iterative-DPO-final</a><br>
13
+ Calibration dataset: <a href="https://huggingface.co/datasets/cosmicvalor/toxic-qna">toxic-qna</a>
14
+
15
+ ## Prompt format
16
+ ```
17
+ <|start_header_id|>system<|end_header_id|>
18
+ {system_prompt}<|eot_id|>
19
+ <|start_header_id|>user<|end_header_id|>
20
+ {prompt}<|eot_id|>
21
+ <|start_header_id|>assistant<|end_header_id|>
22
+ ```
23
+
24
+ ## Available sizes
25
+
26
+ | Branch | Bits | lm_head bits | VRAM (4k) | VRAM (8K) | VRAM (16k) | VRAM (32k) | Description |
27
+ | ----- | ---- | ------- | ------ | ------ | ------ | ------ | ------------ |
28
+ | [8_0](https://huggingface.co/Apel-sin/llama-3-8B-iterative-DPO-final-exl2/tree/8_0) | 8.0 | 8.0 | 10.1 GB | 10.5 GB | 11.5 GB | 13.6 GB | Maximum quality that ExLlamaV2 can produce, near unquantized performance. |
29
+ | [6_5](https://huggingface.co/Apel-sin/llama-3-8B-iterative-DPO-final-exl2/tree/6_5) | 6.5 | 8.0 | 8.9 GB | 9.3 GB | 10.3 GB | 12.4 GB | Very similar to 8.0, good tradeoff of size vs performance, **recommended**. |
30
+ | [5_0](https://huggingface.co/Apel-sin/llama-3-8B-iterative-DPO-final-exl2/tree/5_0) | 5.0 | 8.0 | 7.7 GB | 8.1 GB | 9.1 GB | 11.2 GB | Slightly lower quality vs 6.5, but usable on 8GB cards. |
31
+
32
  # LLaMA3-iterative-DPO-final
33
 
34
  ## Introduction