added benchmarks
Browse files
README.md
CHANGED
@@ -1,3 +1,14 @@
|
|
1 |
-
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Quantized version of this: https://huggingface.co/ausboss/llama-30b-supercot
|
2 |
|
3 |
+
GPTQ quantization using https://github.com/0cc4m/GPTQ-for-LLaMa for compatibility with 0cc4m's fork of KoboldAI
|
4 |
+
|
5 |
+
This one is without groupsize to save on VRAM, so that you can enjoy the full 2048 max context if you have 24GB VRAM (or at least get a lot closer to it versus the groupsize version)
|
6 |
+
|
7 |
+
Command used to quantize:
|
8 |
+
```python llama.py c:\llama-30b-supercot c4 --wbits 4 --act-order --true-sequential --save_safetensors 4bit.safetensors```
|
9 |
+
|
10 |
+
| Eval | Score |
|
11 |
+
| --------- | ----- |
|
12 |
+
| WikiText2 | 4.66 |
|
13 |
+
| PTB | 17.64 |
|
14 |
+
| C4 | 6.50 |
|