TheBloke commited on
Commit
8577d03
1 Parent(s): 9e03af5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -9
README.md CHANGED
@@ -15,18 +15,21 @@ This repo contains GGML files for for CPU inference using [llama.cpp](https://gi
15
  * [4bit and 5bit GGML models for CPU inference in llama.cpp](https://huggingface.co/TheBloke/dromedary-65B-lora-GGML)
16
  * [float16 unquantised model for GPU](https://huggingface.co/TheBloke/dromedary-65B-lora-HF)
17
 
 
 
 
 
 
 
 
 
18
  ## Provided files
19
  | Name | Quant method | Bits | Size | RAM required | Use case |
20
  | ---- | ---- | ---- | ---- | ---- | ----- |
21
- `dromedary-lora-65B.ggml.q4_0.bin` | q4_0 | 4bit | 40.8GB | 43GB | Maximum compatibility |
22
- `dromedary-lora-65B.ggml.q4_2.bin` | q4_2 | 4bit | 40.8GB | 43GB | Best compromise between resources, speed and quality |
23
- `dromedary-lora-65B.ggml.q5_0.bin` | q5_0 | 5bit | 44.9GB | 47GB | Brand new 5bit method. Potentially higher quality than 4bit, at cost of slightly higher resources. |
24
- `dromedary-lora-65B.ggml.q5_1.bin` | q5_1 | 5bit | 49GB | 51GB | Brand new 5bit method. Slightly higher resource usage than q5_0.|
25
-
26
- * The q4_0 file provides lower quality, but maximal compatibility. It will work with past and future versions of llama.cpp
27
- * The q4_2 file offers the best combination of performance and quality. This format is still subject to change and there may be compatibility issues, see below.
28
- * The q5_0 file is using brand new 5bit method released 26th April. This is the 5bit equivalent of q4_0.
29
- * The q5_1 file is using brand new 5bit method released 26
30
 
31
  # Original Dromedary Model Card
32
 
 
15
  * [4bit and 5bit GGML models for CPU inference in llama.cpp](https://huggingface.co/TheBloke/dromedary-65B-lora-GGML)
16
  * [float16 unquantised model for GPU](https://huggingface.co/TheBloke/dromedary-65B-lora-HF)
17
 
18
+ ## REQUIRES LATEST LLAMA.CPP (May 12th 2023 - commit b9fd7ee)!
19
+
20
+ llama.cpp recently made a breaking change to its quantisation methods.
21
+
22
+ I have re-quantised the GGML files in this repo. Therefore you will require llama.cpp compiled on May 12th or later (commit `b9fd7ee` or later) to use them.
23
+
24
+ The previous files, which will still work in older versions of llama.cpp, can be found in branch `previous_llama`.
25
+
26
  ## Provided files
27
  | Name | Quant method | Bits | Size | RAM required | Use case |
28
  | ---- | ---- | ---- | ---- | ---- | ----- |
29
+ `dromedary-lora-65B.ggml.q4_0.bin` | q4_0 | 4bit | 40.8GB | 43GB | 4-bit. |
30
+ `dromedary-lora-65B.ggml.q5_0.bin` | q5_0 | 5bit | 44.9GB | 47GB | 5-bit. Higher accuracy, higher resource usage and slower inference. |
31
+ `dromedary-lora-65B.ggml.q5_1.bin` | q5_1 | 5bit | 49GB | 51GB | 5-bit. Even higher accuracy, higher resource usage and slower inference. |
32
+
 
 
 
 
 
33
 
34
  # Original Dromedary Model Card
35