TheBloke commited on
Commit
b32970f
1 Parent(s): 5b18528

GPTQ model commit

Browse files
Files changed (1) hide show
  1. config.json +38 -0
config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": -1,
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
+ }