pull/17/merge
Juraj Bednar 1 year ago committed by GitHub
commit b740bef6ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -166,6 +166,12 @@ You need to quantize each of them separately like this:
./quantize ./models/13B/ggml-model-f16.bin.1 ./models/13B/ggml-model-q4_0.bin.1 2
```
which can be scripted like this if you are lazy (for 65B model):
```bash
for i in models/65B/ggml-model-f16.bin*;do quantized=`echo "$i" | sed -e 's/f16/q4_0/'`; ./quantize "$i" "$quantized" 2 ;done
```
Everything else is the same. Simply run:
```bash

Loading…
Cancel
Save