Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
- de
|
5 |
+
- fr
|
6 |
+
- it
|
7 |
+
- pt
|
8 |
+
- hi
|
9 |
+
- es
|
10 |
+
- th
|
11 |
+
license: llama3.1
|
12 |
+
pipeline_tag: text-generation
|
13 |
+
tags:
|
14 |
+
- facebook
|
15 |
+
- meta
|
16 |
+
- pytorch
|
17 |
+
- llama
|
18 |
+
- llama-3
|
19 |
+
- gguf
|
20 |
+
- imatrix
|
21 |
+
base_model: meta-llama/Meta-Llama-3.1-70B-Instruct
|
22 |
+
---
|
23 |
+
|
24 |
+
# Quant Infos
|
25 |
+
|
26 |
+
- Requires latest master + [Rope Scaling PR](https://github.com/ggerganov/llama.cpp/pull/8676)
|
27 |
+
- Might not be perfect yet, but seems to mostly work.
|
28 |
+
- quants done with an importance matrix for improved quantization loss
|
29 |
+
- Quantized ggufs & imatrix from hf bf16, through bf16. `safetensors bf16 -> gguf bf16 -> quant` for *optimal* quant loss.
|
30 |
+
- Wide coverage of different gguf quant types from Q\_8\_0 down to IQ1\_S
|
31 |
+
- Imatrix generated with [this](https://gist.github.com/bartowski1182/eb213dccb3571f863da82e99418f81e8) multi-purpose dataset by [bartowski](https://huggingface.co/bartowski).
|
32 |
+
```
|
33 |
+
./imatrix -m $model_name-bf16.gguf -f calibration_datav3.txt -o $model_name.imatrix
|
34 |
+
```
|
35 |
+
|
36 |
+
# Original Model Card:
|
37 |
+
|
38 |
+
TODO
|