Update README.md
Browse files
README.md
CHANGED
@@ -47,7 +47,21 @@ I have quantised the GGML files in this repo with the latest version. Therefore
|
|
47 |
| VicUnlocked-Alpaca-65B.ggmlv3.q4_1.bin | q4_1 | 4 | 40.81 GB | 43.31 GB | 4-bit. Higher accuracy than q4_0 but not as high as q5_0. However has quicker inference than q5 models. |
|
48 |
| VicUnlocked-Alpaca-65B.ggmlv3.q5_0.bin | q5_0 | 5 | 44.89 GB | 47.39 GB | 5-bit. Higher accuracy, higher resource usage and slower inference. |
|
49 |
| VicUnlocked-Alpaca-65B.ggmlv3.q5_1.bin | q5_1 | 5 | 48.97 GB | 51.47 GB | 5-bit. Even higher accuracy, resource usage and slower inference. |
|
|
|
50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
|
52 |
## How to run in `llama.cpp`
|
53 |
|
|
|
47 |
| VicUnlocked-Alpaca-65B.ggmlv3.q4_1.bin | q4_1 | 4 | 40.81 GB | 43.31 GB | 4-bit. Higher accuracy than q4_0 but not as high as q5_0. However has quicker inference than q5 models. |
|
48 |
| VicUnlocked-Alpaca-65B.ggmlv3.q5_0.bin | q5_0 | 5 | 44.89 GB | 47.39 GB | 5-bit. Higher accuracy, higher resource usage and slower inference. |
|
49 |
| VicUnlocked-Alpaca-65B.ggmlv3.q5_1.bin | q5_1 | 5 | 48.97 GB | 51.47 GB | 5-bit. Even higher accuracy, resource usage and slower inference. |
|
50 |
+
| VicUnlocked-Alpaca-65B.ggmlv3.q8_0.bin | q8_0 | 8 | 69.37 GB | 71.87 GB | 8-bit. Almost indistinguishable from float16. Huge resource use and slow. Not recommended for most use cases. |
|
51 |
|
52 |
+
### q8_0 file requires expansion from archive
|
53 |
+
|
54 |
+
**Note:** HF does not support uploading files larger than 50GB. Therefore I have uploaded the q8_0 file in a multi-part ZIP file. The ZIP is not compressed, it is just storing the .bin file in two parts.
|
55 |
+
|
56 |
+
To decompress it, please download
|
57 |
+
* `VicUnlocked-Alpaca-65B.ggmlv3.q8_0.zip`
|
58 |
+
* `VicUnlocked-Alpaca-65B.ggmlv3.q8_0.z01`
|
59 |
+
|
60 |
+
and extract the .zip archive. This will will expand both parts automatically. On Linux I found I had to use `7zip` - the basic `unzip` tool did not work. Example:
|
61 |
+
```
|
62 |
+
sudo apt update -y && sudo apt install 7zip
|
63 |
+
7zz x VicUnlocked-Alpaca-65B.ggmlv3.q8_0.zip # Once the q8_0.bin is extracted you can delete the .zip and .z01
|
64 |
+
```
|
65 |
|
66 |
## How to run in `llama.cpp`
|
67 |
|