TheBloke commited on
Commit
cc7a1fe
1 Parent(s): 78dfd93

GPTQ model commit

Browse files
Files changed (1) hide show
  1. config.json +37 -48
config.json CHANGED
@@ -1,49 +1,38 @@
1
  {
2
- "_name_or_path": "/workspace/process/tiiuae_falcon-180b/gptq/main/",
3
- "alibi": false,
4
- "architectures": [
5
- "FalconForCausalLM"
6
- ],
7
- "attention_dropout": 0.0,
8
- "bias": false,
9
- "bos_token_id": 11,
10
- "eos_token_id": 11,
11
- "hidden_dropout": 0.0,
12
- "hidden_size": 14848,
13
- "initializer_range": 0.02,
14
- "layer_norm_epsilon": 1e-05,
15
- "max_position_embeddings": 2048,
16
- "model_type": "falcon",
17
- "multi_query": true,
18
- "new_decoder_architecture": true,
19
- "num_attention_heads": 232,
20
- "num_hidden_layers": 80,
21
- "num_kv_heads": 8,
22
- "pad_token_id": 0,
23
- "parallel_attn": true,
24
- "pretraining_tp": 1,
25
- "quantization_config": {
26
- "batch_size": 1,
27
- "bits": 4,
28
- "block_name_to_quantize": null,
29
- "damp_percent": 0.1,
30
- "dataset": null,
31
- "desc_act": true,
32
- "disable_exllama": true,
33
- "group_size": 128,
34
- "model_seqlen": null,
35
- "module_name_preceding_first_block": null,
36
- "pad_token_id": null,
37
- "quant_method": "gptq",
38
- "sym": true,
39
- "tokenizer": null,
40
- "true_sequential": true,
41
- "use_cuda_fp16": false
42
- },
43
- "rope_scaling": null,
44
- "rope_theta": 10000.0,
45
- "torch_dtype": "float16",
46
- "transformers_version": "4.33.0",
47
- "use_cache": true,
48
- "vocab_size": 65024
49
- }
 
1
  {
2
+ "alibi": false,
3
+ "architectures": [
4
+ "FalconForCausalLM"
5
+ ],
6
+ "attention_dropout": 0.0,
7
+ "bias": false,
8
+ "bos_token_id": 11,
9
+ "eos_token_id": 11,
10
+ "hidden_dropout": 0.0,
11
+ "hidden_size": 14848,
12
+ "initializer_range": 0.02,
13
+ "layer_norm_epsilon": 1e-05,
14
+ "model_type": "falcon",
15
+ "multi_query": true,
16
+ "new_decoder_architecture": true,
17
+ "num_attention_heads": 232,
18
+ "num_hidden_layers": 80,
19
+ "num_kv_heads": 8,
20
+ "parallel_attn": true,
21
+ "torch_dtype": "bfloat16",
22
+ "transformers_version": "4.32.0",
23
+ "use_cache": true,
24
+ "vocab_size": 65024,
25
+ "pretraining_tp": 1,
26
+ "pad_token_id": 0,
27
+ "quantization_config": {
28
+ "bits": 4,
29
+ "group_size": 128,
30
+ "damp_percent": 0.1,
31
+ "desc_act": true,
32
+ "sym": true,
33
+ "true_sequential": true,
34
+ "model_name_or_path": null,
35
+ "model_file_base_name": "model",
36
+ "quant_method": "gptq"
37
+ }
38
+ }