TheBloke commited on
Commit
1fdba4b
1 Parent(s): 3725f64

GPTQ model commit

Browse files
Files changed (1) hide show
  1. config.json +39 -0
config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "Dampish/stellar7CHPT",
3
+ "architectures": [
4
+ "GPTNeoXForCausalLM"
5
+ ],
6
+ "bos_token_id": 0,
7
+ "classifier_dropout": 0.1,
8
+ "eos_token_id": 0,
9
+ "hidden_act": "gelu",
10
+ "hidden_size": 2560,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 10240,
13
+ "layer_norm_eps": 1e-05,
14
+ "max_position_embeddings": 2048,
15
+ "model_type": "gpt_neox",
16
+ "num_attention_heads": 32,
17
+ "num_hidden_layers": 32,
18
+ "rotary_emb_base": 10000,
19
+ "rotary_pct": 1.0,
20
+ "tie_word_embeddings": false,
21
+ "torch_dtype": "float32",
22
+ "transformers_version": "4.29.2",
23
+ "use_cache": true,
24
+ "use_parallel_residual": false,
25
+ "vocab_size": 50432,
26
+ "pretraining_tp": 1,
27
+ "pad_token_id": 0,
28
+ "quantization_config": {
29
+ "bits": 4,
30
+ "group_size": 32,
31
+ "damp_percent": 0.1,
32
+ "desc_act": true,
33
+ "sym": true,
34
+ "true_sequential": true,
35
+ "model_name_or_path": null,
36
+ "model_file_base_name": "model",
37
+ "quant_method": "gptq"
38
+ }
39
+ }