Main branch
Browse files- README.md +44 -0
- measurement.json +0 -0
README.md
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
pipeline_tag: text-generation
|
5 |
+
quantized_by: bartowski
|
6 |
+
---
|
7 |
+
|
8 |
+
## Exllama v2 Quantizations of opus-v0-7b
|
9 |
+
|
10 |
+
Using <a href="https://github.com/turboderp/exllamav2/releases/tag/v0.0.7">turboderp's ExLlamaV2 v0.0.7</a> for quantization.
|
11 |
+
|
12 |
+
Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
|
13 |
+
|
14 |
+
Conversion was done using wikitext-103-raw-v1-test.parquet as calibration dataset.
|
15 |
+
|
16 |
+
Original model: https://huggingface.co/dreamgen/opus-v0-7b
|
17 |
+
|
18 |
+
## Download instructions
|
19 |
+
|
20 |
+
With git:
|
21 |
+
|
22 |
+
```shell
|
23 |
+
git clone --single-branch --branch 4.0 https://huggingface.co/bartowski/opus-v0-7b-exl2
|
24 |
+
```
|
25 |
+
|
26 |
+
With huggingface hub (credit to TheBloke for instructions):
|
27 |
+
|
28 |
+
```shell
|
29 |
+
pip3 install huggingface-hub
|
30 |
+
```
|
31 |
+
|
32 |
+
To download the `main` (only useful if you only care about measurement.json) branch to a folder called `opus-v0-7b-exl2`:
|
33 |
+
|
34 |
+
```shell
|
35 |
+
mkdir opus-v0-7b-exl2
|
36 |
+
huggingface-cli download bartowski/opus-v0-7b-exl2 --local-dir opus-v0-7b-exl2 --local-dir-use-symlinks False
|
37 |
+
```
|
38 |
+
|
39 |
+
To download from a different branch, add the `--revision` parameter:
|
40 |
+
|
41 |
+
```shell
|
42 |
+
mkdir opus-v0-7b-exl2
|
43 |
+
huggingface-cli download bartowski/opus-v0-7b-exl2 --revision 4.0 --local-dir opus-v0-7b-exl2 --local-dir-use-symlinks False
|
44 |
+
```
|
measurement.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|