Update GGML models for latest ggml commit with ggml version included.
Browse files
README.md
CHANGED
@@ -27,12 +27,12 @@ Please note that these MPT GGMLs are **not compatbile with llama.cpp**. Right no
|
|
27 |
## Provided files
|
28 |
| Name | Quant method | Bits | Size | RAM required | Use case |
|
29 |
| ---- | ---- | ---- | ---- | ---- | ----- |
|
30 |
-
`mpt-7b-storywriter.
|
31 |
-
`mpt-7b-storywriter.
|
32 |
-
`mpt-7b-storywriter.
|
33 |
-
`mpt-7b-storywriter.
|
34 |
-
`mpt-7b-storywriter.
|
35 |
-
`mpt-7b-storywriter.
|
36 |
|
37 |
## Compatibilty
|
38 |
|
@@ -53,7 +53,7 @@ mkdir build
|
|
53 |
cd build
|
54 |
cmake ..
|
55 |
cmake --build . --config Release
|
56 |
-
bin/mpt -m /path/to/mpt-7b-storywriter.
|
57 |
```
|
58 |
|
59 |
Please see the ggml repo for other build options.
|
|
|
27 |
## Provided files
|
28 |
| Name | Quant method | Bits | Size | RAM required | Use case |
|
29 |
| ---- | ---- | ---- | ---- | ---- | ----- |
|
30 |
+
`mpt-7b-storywriter.ggmlv3.q4_0.bin` | q4_0 | 4bit | 4.21GB | 7.0GB | 4-bit. |
|
31 |
+
`mpt-7b-storywriter.ggmlv3.q4_1.bin` | q4_0 | 4bit | 4.63GB | 7.5GB | 4-bit. Higher accuracy than q4_0 but not as high as q5_0. However has quicker inference than q5 models. |
|
32 |
+
`mpt-7b-storywriter.ggmlv3.q5_0.bin` | q5_0 | 5bit | 4.63GB | 7.5GB | 5-bit. Higher accuracy, higher resource usage and slower inference. |
|
33 |
+
`mpt-7b-storywriter.ggmlv3.q5_1.bin` | q5_1 | 5bit | 5.06GB | 7.5GB | 5-bit. Even higher accuracy, and higher resource usage and slower inference. |
|
34 |
+
`mpt-7b-storywriter.ggmlv3.q8_0.bin` | q8_0 | 8bit | 7.58GB | 9.0GB | 8-bit. Almost indistinguishable from float16. Huge resource use and slow. Not recommended for normal use. |
|
35 |
+
`mpt-7b-storywriter.ggmlv3.fp16.bin` | fp16 | 16bit | GB | GB | Full 16-bit. |
|
36 |
|
37 |
## Compatibilty
|
38 |
|
|
|
53 |
cd build
|
54 |
cmake ..
|
55 |
cmake --build . --config Release
|
56 |
+
bin/mpt -m /path/to/mpt-7b-storywriter.ggmlv3.q4_0.bin -t 8 -n 512 -p "Write a story about llamas"
|
57 |
```
|
58 |
|
59 |
Please see the ggml repo for other build options.
|