Main branch
Browse files- README.md +59 -0
- measurement.json +0 -0
README.md
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: upstage/SOLAR-10.7B-v1.0
|
3 |
+
tags:
|
4 |
+
- SOLAR
|
5 |
+
- instruct
|
6 |
+
- finetune
|
7 |
+
- chatml
|
8 |
+
- gpt4
|
9 |
+
- synthetic data
|
10 |
+
- distillation
|
11 |
+
model-index:
|
12 |
+
- name: Nous-Hermes-2-SOLAR-10.7B
|
13 |
+
results: []
|
14 |
+
license: apache-2.0
|
15 |
+
language:
|
16 |
+
- en
|
17 |
+
quantized_by: bartowski
|
18 |
+
pipeline_tag: text-generation
|
19 |
+
---
|
20 |
+
|
21 |
+
## Exllama v2 Quantizations of Nous-Hermes-2-SOLAR-10.7B
|
22 |
+
|
23 |
+
Using <a href="https://github.com/turboderp/exllamav2/releases/tag/v0.0.11">turboderp's ExLlamaV2 v0.0.11</a> for quantization.
|
24 |
+
|
25 |
+
Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
|
26 |
+
|
27 |
+
Conversion was done using the default calibration dataset.
|
28 |
+
|
29 |
+
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.
|
30 |
+
|
31 |
+
Original model: https://huggingface.co/NousResearch/Nous-Hermes-2-SOLAR-10.7B
|
32 |
+
|
33 |
+
## Download instructions
|
34 |
+
|
35 |
+
With git:
|
36 |
+
|
37 |
+
```shell
|
38 |
+
git clone --single-branch --branch 4_0 https://huggingface.co/bartowski/Nous-Hermes-2-SOLAR-10.7B-exl2
|
39 |
+
```
|
40 |
+
|
41 |
+
With huggingface hub (credit to TheBloke for instructions):
|
42 |
+
|
43 |
+
```shell
|
44 |
+
pip3 install huggingface-hub
|
45 |
+
```
|
46 |
+
|
47 |
+
To download the `main` (only useful if you only care about measurement.json) branch to a folder called `Nous-Hermes-2-SOLAR-10.7B-exl2`:
|
48 |
+
|
49 |
+
```shell
|
50 |
+
mkdir Nous-Hermes-2-SOLAR-10.7B-exl2
|
51 |
+
huggingface-cli download bartowski/Nous-Hermes-2-SOLAR-10.7B-exl2 --local-dir Nous-Hermes-2-SOLAR-10.7B-exl2 --local-dir-use-symlinks False
|
52 |
+
```
|
53 |
+
|
54 |
+
To download from a different branch, add the `--revision` parameter:
|
55 |
+
|
56 |
+
```shell
|
57 |
+
mkdir Nous-Hermes-2-SOLAR-10.7B-exl2
|
58 |
+
huggingface-cli download bartowski/Nous-Hermes-2-SOLAR-10.7B-exl2 --revision 4_0 --local-dir Nous-Hermes-2-SOLAR-10.7B-exl2 --local-dir-use-symlinks False
|
59 |
+
```
|
measurement.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|