Transformers
mpt
Composer
MosaicML
llm-foundry
TheBloke commited on
Commit
07631bb
1 Parent(s): 1d8993a

Update GGML models for latest ggml commit with ggml version included.

Browse files
Files changed (1) hide show
  1. README.md +7 -7
README.md CHANGED
@@ -26,12 +26,12 @@ Please note that these MPT GGMLs are **not compatbile with llama.cpp**. Right no
26
  ## Provided files
27
  | Name | Quant method | Bits | Size | RAM required | Use case |
28
  | ---- | ---- | ---- | ---- | ---- | ----- |
29
- `mpt7b-instruct.ggmlv2.q4_0.bin` | q4_0 | 4bit | 4.16GB | 6.2GB | 4-bit. |
30
- `mpt7b-instruct.ggmlv2.q4_1.bin` | q4_0 | 4bit | 4.99GB | 7.2GB | 4-bit. Higher accuracy than q4_0 but not as high as q5_0. However has quicker inference than q5 models. |
31
- `mpt7b-instruct.ggmlv2.q5_0.bin` | q5_0 | 5bit | 4.57GB | 6.8GB | 5-bit. Higher accuracy, higher resource usage and slower inference. |
32
- `mpt7b-instruct.ggmlv2.q5_1.bin` | q5_1 | 5bit | 4.99GB | 7.2GB | 5-bit. Even higher accuracy, and higher resource usage and slower inference. |
33
- `mpt7b-instruct.ggmlv2.q8_0.bin` | q8_0 | 8bit | 7.48GB | 9.7GB | 8-bit. Almost indistinguishable from float16. Huge resource use and slow. Not recommended for normal use. |
34
- `mpt7b-instruct.ggmlv2.fp16.bin` | fp16 | 16bit | 13.30GB | 16GB | Full 16-bit. |
35
 
36
  ## Compatibilty
37
 
@@ -52,7 +52,7 @@ mkdir build
52
  cd build
53
  cmake ..
54
  cmake --build . --config Release
55
- bin/mpt -m /path/to/mpt7b-instruct.ggmlv2.q4_0.bin -t 8 -n 512 -p "Write a story about llamas"
56
  ```
57
 
58
  Please see the ggml repo for other build options.
 
26
  ## Provided files
27
  | Name | Quant method | Bits | Size | RAM required | Use case |
28
  | ---- | ---- | ---- | ---- | ---- | ----- |
29
+ `mpt7b-instruct.ggmlv3.q4_0.bin` | q4_0 | 4bit | 4.16GB | 6.2GB | 4-bit. |
30
+ `mpt7b-instruct.ggmlv3.q4_1.bin` | q4_0 | 4bit | 4.99GB | 7.2GB | 4-bit. Higher accuracy than q4_0 but not as high as q5_0. However has quicker inference than q5 models. |
31
+ `mpt7b-instruct.ggmlv3.q5_0.bin` | q5_0 | 5bit | 4.57GB | 6.8GB | 5-bit. Higher accuracy, higher resource usage and slower inference. |
32
+ `mpt7b-instruct.ggmlv3.q5_1.bin` | q5_1 | 5bit | 4.99GB | 7.2GB | 5-bit. Even higher accuracy, and higher resource usage and slower inference. |
33
+ `mpt7b-instruct.ggmlv3.q8_0.bin` | q8_0 | 8bit | 7.48GB | 9.7GB | 8-bit. Almost indistinguishable from float16. Huge resource use and slow. Not recommended for normal use. |
34
+ `mpt7b-instruct.ggmlv3.fp16.bin` | fp16 | 16bit | 13.30GB | 16GB | Full 16-bit. |
35
 
36
  ## Compatibilty
37
 
 
52
  cd build
53
  cmake ..
54
  cmake --build . --config Release
55
+ bin/mpt -m /path/to/mpt7b-instruct.ggmlv3.q4_0.bin -t 8 -n 512 -p "Write a story about llamas"
56
  ```
57
 
58
  Please see the ggml repo for other build options.