Main branch
Browse files- README.md +66 -0
- measurement.json +0 -0
README.md
ADDED
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
library_name: peft
|
4 |
+
base_model: rishiraj/CatPPT-base
|
5 |
+
datasets:
|
6 |
+
- HuggingFaceH4/no_robots
|
7 |
+
language:
|
8 |
+
- en
|
9 |
+
widget:
|
10 |
+
- text: |
|
11 |
+
<|system|>
|
12 |
+
You are a friendly chatbot who always responds in the style of a pirate</s>
|
13 |
+
<|user|>
|
14 |
+
How many helicopters can a human eat in one sitting?</s>
|
15 |
+
<|assistant|>
|
16 |
+
output:
|
17 |
+
text: >-
|
18 |
+
Aye, me hearties! 'Tis not likely a human can eat a helicopter in any sittin', let alone one! They be too big and made of metal, and not fit for consumption. But if ye be referrin' to helicopter snacks, like nuts and trail mix, then a human might be able to munch a goodly amount in one sittin'. Arr!
|
19 |
+
tags:
|
20 |
+
- generated_from_trainer
|
21 |
+
pipeline_tag: text-generation
|
22 |
+
model-index:
|
23 |
+
- name: CatPPT
|
24 |
+
results: []
|
25 |
+
quantized_by: bartowski
|
26 |
+
---
|
27 |
+
|
28 |
+
## Exllama v2 Quantizations of CatPPT
|
29 |
+
|
30 |
+
Using <a href="https://github.com/turboderp/exllamav2/releases/tag/v0.0.11">turboderp's ExLlamaV2 v0.0.11</a> for quantization.
|
31 |
+
|
32 |
+
Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
|
33 |
+
|
34 |
+
Conversion was done using the default calibration dataset.
|
35 |
+
|
36 |
+
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.
|
37 |
+
|
38 |
+
Original model: https://huggingface.co/rishiraj/CatPPT
|
39 |
+
|
40 |
+
## Download instructions
|
41 |
+
|
42 |
+
With git:
|
43 |
+
|
44 |
+
```shell
|
45 |
+
git clone --single-branch --branch 4_0 https://huggingface.co/bartowski/CatPPT-exl2
|
46 |
+
```
|
47 |
+
|
48 |
+
With huggingface hub (credit to TheBloke for instructions):
|
49 |
+
|
50 |
+
```shell
|
51 |
+
pip3 install huggingface-hub
|
52 |
+
```
|
53 |
+
|
54 |
+
To download the `main` (only useful if you only care about measurement.json) branch to a folder called `CatPPT-exl2`:
|
55 |
+
|
56 |
+
```shell
|
57 |
+
mkdir CatPPT-exl2
|
58 |
+
huggingface-cli download bartowski/CatPPT-exl2 --local-dir CatPPT-exl2 --local-dir-use-symlinks False
|
59 |
+
```
|
60 |
+
|
61 |
+
To download from a different branch, add the `--revision` parameter:
|
62 |
+
|
63 |
+
```shell
|
64 |
+
mkdir CatPPT-exl2
|
65 |
+
huggingface-cli download bartowski/CatPPT-exl2 --revision 4_0 --local-dir CatPPT-exl2 --local-dir-use-symlinks False
|
66 |
+
```
|
measurement.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|