BillBojangeles2000 commited on
Commit
98f3526
1 Parent(s): 2ca004c

Update configuration.json

Browse files
Files changed (1) hide show
  1. configuration.json +22 -16
configuration.json CHANGED
@@ -1,19 +1,25 @@
1
  {
2
- "base_model_name_or_path": "EleutherAI/gpt-neox-20b",
3
- "bias": "none",
4
- "fan_in_fan_out": false,
5
- "inference_mode": true,
6
- "init_lora_weights": true,
7
- "layers_pattern": null,
8
- "layers_to_transform": null,
9
- "lora_alpha": 32,
10
- "lora_dropout": 0.05,
11
- "modules_to_save": null,
12
- "peft_type": "LORA",
13
- "r": 8,
14
- "revision": null,
15
- "target_modules": [
16
- "query_key_value"
17
  ],
18
- "task_type": "CAUSAL_LM"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  }
 
1
  {
2
+ "architectures": [
3
+ "GPTNeoXForCausalLM"
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  ],
5
+ "attention_probs_dropout_prob": 0,
6
+ "bos_token_id": 0,
7
+ "eos_token_id": 0,
8
+ "hidden_act": "gelu_fast",
9
+ "hidden_dropout_prob": 0,
10
+ "hidden_size": 6144,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 24576,
13
+ "layer_norm_eps": 1e-05,
14
+ "max_position_embeddings": 2048,
15
+ "model_type": "gpt_neox",
16
+ "num_attention_heads": 64,
17
+ "num_hidden_layers": 44,
18
+ "rotary_emb_base": 10000,
19
+ "rotary_pct": 0.25,
20
+ "tie_word_embeddings": false,
21
+ "torch_dtype": "float16",
22
+ "transformers_version": "4.19.0.dev0",
23
+ "use_cache": true,
24
+ "vocab_size": 50432
25
  }