Main branch
Browse files- README.md +41 -0
- measurement.json +0 -0
README.md
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
datasets:
|
3 |
+
- Norquinal/claude_multiround_chat_1k
|
4 |
+
license: cc-by-nc-4.0
|
5 |
+
---
|
6 |
+
|
7 |
+
## Exllama v2 Quantizations of Mistral-7B-claude-chat
|
8 |
+
|
9 |
+
Each branches contains an individual bits per weight.
|
10 |
+
|
11 |
+
Conversion was done using wikitext.parquet as calibration dataset.
|
12 |
+
|
13 |
+
Original model: https://huggingface.co/Norquinal/Mistral-7B-claude-chat
|
14 |
+
|
15 |
+
# To download, you can use the following command:
|
16 |
+
|
17 |
+
With git:
|
18 |
+
|
19 |
+
```shell
|
20 |
+
git clone --single-branch --branch 4.0 https://huggingface.co/bartowski/Mistral-7B-claude-chat-exl2
|
21 |
+
```
|
22 |
+
|
23 |
+
With huggingface hub:
|
24 |
+
|
25 |
+
```shell
|
26 |
+
pip3 install huggingface-hub
|
27 |
+
```
|
28 |
+
|
29 |
+
To download the `main` (only useful if you only care about measurement.json) branch to a folder called `Mistral-7B-claude-chat-exl2`:
|
30 |
+
|
31 |
+
```shell
|
32 |
+
mkdir Mistral-7B-claude-chat-exl2
|
33 |
+
huggingface-cli download bartowski/Mistral-7B-claude-chat-exl2 --local-dir Mistral-7B-claude-chat-exl2 --local-dir-use-symlinks False
|
34 |
+
```
|
35 |
+
|
36 |
+
To download from a different branch, add the `--revision` parameter:
|
37 |
+
|
38 |
+
```shell
|
39 |
+
mkdir Mistral-7B-claude-chat-exl2
|
40 |
+
huggingface-cli download bartowski/Mistral-7B-claude-chat-exl2 --revision 4.0 --local-dir Mistral-7B-claude-chat-exl2 --local-dir-use-symlinks False
|
41 |
+
```
|
measurement.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|