Upload of AutoGPTQ quantized model
Browse files- config.json +29 -0
- gptq_model-4bit-128g.bin +3 -0
- quantize_config.json +11 -0
- tokenizer.json +0 -0
- tokenizer_config.json +1 -3
config.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "/ibex/user/xuj0h/LLM_ckpt/llama-pretrained-RLHF-v1.0",
|
3 |
+
"architectures": [
|
4 |
+
"LlamaForCausalLM"
|
5 |
+
],
|
6 |
+
"bos_token_id": 1,
|
7 |
+
"dropout": 0.0,
|
8 |
+
"end_token_id": 2,
|
9 |
+
"eos_token_id": 2,
|
10 |
+
"hidden_act": "silu",
|
11 |
+
"hidden_size": 4096,
|
12 |
+
"initializer_range": 0.02,
|
13 |
+
"intermediate_size": 11008,
|
14 |
+
"max_length": 4096,
|
15 |
+
"max_position_embeddings": 2048,
|
16 |
+
"model_type": "llama",
|
17 |
+
"num_attention_heads": 32,
|
18 |
+
"num_hidden_layers": 32,
|
19 |
+
"num_key_value_heads": 32,
|
20 |
+
"pad_token_id": 2,
|
21 |
+
"pretraining_tp": 1,
|
22 |
+
"rms_norm_eps": 1e-05,
|
23 |
+
"rope_scaling": null,
|
24 |
+
"tie_word_embeddings": false,
|
25 |
+
"torch_dtype": "float16",
|
26 |
+
"transformers_version": "4.32.0",
|
27 |
+
"use_cache": true,
|
28 |
+
"vocab_size": 32000
|
29 |
+
}
|
gptq_model-4bit-128g.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b1531b16078158007c3f685585875a63b6ec0e051526fd8b901f600e776ff329
|
3 |
+
size 3896994967
|
quantize_config.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bits": 4,
|
3 |
+
"group_size": 128,
|
4 |
+
"damp_percent": 0.01,
|
5 |
+
"desc_act": false,
|
6 |
+
"static_groups": false,
|
7 |
+
"sym": true,
|
8 |
+
"true_sequential": true,
|
9 |
+
"model_name_or_path": "/ibex/user/xuj0h/LLM_ckpt/Quant/AceGPT-7b-chat-GPTQ",
|
10 |
+
"model_file_base_name": "gptq_model-4bit-128g"
|
11 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
CHANGED
@@ -22,7 +22,6 @@
|
|
22 |
"model_max_length": 1000000000000000019884624838656,
|
23 |
"pad_token": null,
|
24 |
"sp_model_kwargs": {},
|
25 |
-
"spaces_between_special_tokens": false,
|
26 |
"tokenizer_class": "LlamaTokenizer",
|
27 |
"unk_token": {
|
28 |
"__type": "AddedToken",
|
@@ -31,6 +30,5 @@
|
|
31 |
"normalized": false,
|
32 |
"rstrip": false,
|
33 |
"single_word": false
|
34 |
-
}
|
35 |
-
"use_default_system_prompt": true
|
36 |
}
|
|
|
22 |
"model_max_length": 1000000000000000019884624838656,
|
23 |
"pad_token": null,
|
24 |
"sp_model_kwargs": {},
|
|
|
25 |
"tokenizer_class": "LlamaTokenizer",
|
26 |
"unk_token": {
|
27 |
"__type": "AddedToken",
|
|
|
30 |
"normalized": false,
|
31 |
"rstrip": false,
|
32 |
"single_word": false
|
33 |
+
}
|
|
|
34 |
}
|