bartowski commited on
Commit
067a59f
·
verified ·
1 Parent(s): 9c79c26

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ quantized_by: bartowski
3
+ pipeline_tag: text-generation
4
+ ---
5
+
6
+ ## Llamacpp Static Quantizations of Meta-Llama-3.1-8B-Instruct
7
+
8
+ Using <a href="https://github.com/ggerganov/llama.cpp/">llama.cpp</a> release <a href="https://github.com/ggerganov/llama.cpp/releases/tag/b3441">b3441</a> for quantization.
9
+
10
+ Original model: https://huggingface.co/meta-llama/Meta-Llama-3.1-8B-Instruct
11
+
12
+ Run them in [LM Studio](https://lmstudio.ai/)
13
+
14
+ ## Prompt format
15
+
16
+ ```
17
+ <|begin_of_text|><|start_header_id|>system<|end_header_id|>
18
+
19
+ {system_prompt}<|eot_id|><|start_header_id|>user<|end_header_id|>
20
+
21
+ {prompt}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
22
+
23
+
24
+ ```
25
+
26
+ ## Download a file (not the whole branch) from below:
27
+
28
+ | Filename | Quant type | File Size | Split | Description |
29
+ | -------- | ---------- | --------- | ----- | ----------- |
30
+ | [Meta-Llama-3.1-8B-Instruct-bf16.gguf](https://huggingface.co/bartowski/Meta-Llama-3.1-8B-Instruct-GGUF/blob/main/Meta-Llama-3.1-8B-Instruct-bf16.gguf) | bf16 | 16.07GB | false | Full BF16 weights. |
31
+ | [Meta-Llama-3.1-8B-Instruct-Q4_K_M.gguf](https://huggingface.co/bartowski/Meta-Llama-3.1-8B-Instruct-GGUF/blob/main/Meta-Llama-3.1-8B-Instruct-Q4_K_M.gguf) | Q4_K_M | 4.92GB | false | Good quality, default size for must use cases, *recommended*. |
32
+
33
+ ## Credits
34
+
35
+ Thank you kalomaze and Dampf for assistance in creating the imatrix calibration dataset
36
+
37
+ Thank you ZeroWw for the inspiration to experiment with embed/output
38
+
39
+ ## Downloading using huggingface-cli
40
+
41
+ First, make sure you have hugginface-cli installed:
42
+
43
+ ```
44
+ pip install -U "huggingface_hub[cli]"
45
+ ```
46
+
47
+ Then, you can target the specific file you want:
48
+
49
+ ```
50
+ huggingface-cli download bartowski/Meta-Llama-3.1-8B-Instruct-GGUF --include "Meta-Llama-3.1-8B-Instruct-Q4_K_M.gguf" --local-dir ./
51
+ ```
52
+
53
+ If the model is bigger than 50GB, it will have been split into multiple files. In order to download them all to a local folder, run:
54
+
55
+ ```
56
+ huggingface-cli download bartowski/Meta-Llama-3.1-8B-Instruct-GGUF --include "Meta-Llama-3.1-8B-Instruct-Q8_0.gguf/*" --local-dir Meta-Llama-3.1-8B-Instruct-Q8_0
57
+ ```
58
+
59
+ You can either specify a new local-dir (Meta-Llama-3.1-8B-Instruct-Q8_0) or download them all in place (./)
60
+
61
+ ## Which file should I choose?
62
+
63
+ A great write up with charts showing various performances is provided by Artefact2 [here](https://gist.github.com/Artefact2/b5f810600771265fc1e39442288e8ec9)
64
+
65
+ The first thing to figure out is how big a model you can run. To do this, you'll need to figure out how much RAM and/or VRAM you have.
66
+
67
+ If you want your model running as FAST as possible, you'll want to fit the whole thing on your GPU's VRAM. Aim for a quant with a file size 1-2GB smaller than your GPU's total VRAM.
68
+
69
+ If you want the absolute maximum quality, add both your system RAM and your GPU's VRAM together, then similarly grab a quant with a file size 1-2GB Smaller than that total.
70
+
71
+ Next, you'll need to decide if you want to use an 'I-quant' or a 'K-quant'.
72
+
73
+ If you don't want to think too much, grab one of the K-quants. These are in format 'QX_K_X', like Q5_K_M.
74
+
75
+ If you want to get more into the weeds, you can check out this extremely useful feature chart:
76
+
77
+ [llama.cpp feature matrix](https://github.com/ggerganov/llama.cpp/wiki/Feature-matrix)
78
+
79
+ But basically, if you're aiming for below Q4, and you're running cuBLAS (Nvidia) or rocBLAS (AMD), you should look towards the I-quants. These are in format IQX_X, like IQ3_M. These are newer and offer better performance for their size.
80
+
81
+ These I-quants can also be used on CPU and Apple Metal, but will be slower than their K-quant equivalent, so speed vs performance is a tradeoff you'll have to decide.
82
+
83
+ The I-quants are *not* compatible with Vulcan, which is also AMD, so if you have an AMD card double check if you're using the rocBLAS build or the Vulcan build. At the time of writing this, LM Studio has a preview with ROCm support, and other inference engines have specific builds for ROCm.
84
+
85
+ Want to support my work? Visit my ko-fi page here: https://ko-fi.com/bartowski
86
+