Main branch
Browse files- README.md +54 -0
- measurement.json +0 -0
README.md
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: fblgit/zephyr-lora-dpo-b1
|
3 |
+
tags:
|
4 |
+
- alignment-handbook
|
5 |
+
- generated_from_trainer
|
6 |
+
datasets:
|
7 |
+
- HuggingFaceH4/ultrafeedback_binarized
|
8 |
+
model-index:
|
9 |
+
- name: juanako-7b-v1
|
10 |
+
results: []
|
11 |
+
license: artistic-2.0
|
12 |
+
quantized_by: bartowski
|
13 |
+
pipeline_tag: text-generation
|
14 |
+
---
|
15 |
+
|
16 |
+
## Exllama v2 Quantizations of juanako-7b-v1
|
17 |
+
|
18 |
+
Using <a href="https://github.com/turboderp/exllamav2/releases/tag/v0.0.9">turboderp's ExLlamaV2 v0.0.9</a> for quantization.
|
19 |
+
|
20 |
+
Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
|
21 |
+
|
22 |
+
Conversion was done using wikitext-103-raw-v1-test.parquet as calibration dataset.
|
23 |
+
|
24 |
+
Default arguments used except when the bits per weight is above 6.0, at that point the lm_head layer is quantized at 8 bits per weight instead of the default 6.
|
25 |
+
|
26 |
+
Original model: https://huggingface.co/fblgit/juanako-7b-v1
|
27 |
+
|
28 |
+
## Download instructions
|
29 |
+
|
30 |
+
With git:
|
31 |
+
|
32 |
+
```shell
|
33 |
+
git clone --single-branch --branch 4_0 https://huggingface.co/bartowski/juanako-7b-v1-exl2
|
34 |
+
```
|
35 |
+
|
36 |
+
With huggingface hub (credit to TheBloke for instructions):
|
37 |
+
|
38 |
+
```shell
|
39 |
+
pip3 install huggingface-hub
|
40 |
+
```
|
41 |
+
|
42 |
+
To download the `main` (only useful if you only care about measurement.json) branch to a folder called `juanako-7b-v1-exl2`:
|
43 |
+
|
44 |
+
```shell
|
45 |
+
mkdir juanako-7b-v1-exl2
|
46 |
+
huggingface-cli download bartowski/juanako-7b-v1-exl2 --local-dir juanako-7b-v1-exl2 --local-dir-use-symlinks False
|
47 |
+
```
|
48 |
+
|
49 |
+
To download from a different branch, add the `--revision` parameter:
|
50 |
+
|
51 |
+
```shell
|
52 |
+
mkdir juanako-7b-v1-exl2
|
53 |
+
huggingface-cli download bartowski/juanako-7b-v1-exl2 --revision 4_0 --local-dir juanako-7b-v1-exl2 --local-dir-use-symlinks False
|
54 |
+
```
|
measurement.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|